WordPress JQuery: “Uncaught TypeError: $(…).dialog is not a function”

Problem: You’ve added JQuery dialog boxes to your WordPress page, and you added the following to $(document).ready(function()… in your JQuery file. $(“#My_Dialog”).dialog({ autoOpen: false, modal: true, buttons: { Cancel: function() {$(this).dialog(“close”);}, Save: function() {$(this).dialog(“close”);} },}); Now your Chrome debugger complains about: Uncaught TypeError: $(…).dialog is not a function Reason: Your JQuery file needs /wp-includes/js/jquery/ui/dialog.js which… Continue reading WordPress JQuery: “Uncaught TypeError: $(…).dialog is not a function”

Word 2010 VBA Restrictions

Restrictions found in VBA for Word 2010 Cannot create subclasses of classes. Can pass static arrays to functions and procedures, but not methods. Get a compile error. Cannot delete paragraph or table styles from the template using style.Delete. Get run-time error. Cannot add table styles to the template. Get run-time error when code hits template.Style.baseStyle… Continue reading Word 2010 VBA Restrictions

Windows Symbolic Links

The following creates a symbolic link to a directory: mklink /j <link_folder> <path_to_real_folder> where link_folder is C:\folder\folder2 where folder2 does not exist path_to_real_folder is D:\folder3\folder4

TimeManager

TimeManager is timesheet and leave tracking system. It is a Windows desktop application designed for the Eastern Ottawa Resource Centre

Published
Categorized as Products

codedogs-casem

Codedogs-CASEM is a WordPress plugin developed for Canadian Academy of Sport and Exercise Medicine to add new functionality to their website.

Published
Categorized as Products

Readabar

Readabar is a Microsoft Word macro enabled template created for Popscom.

Published
Categorized as Products

Apple Hidden Files

Execute from a Terminal window: Show hidden files defaults write com.apple.finder AppleShowAllFiles YES killall Finder Hide hidden files defaults write com.apple.finder AppleShowAllFiles NO killall Finder

Comparing Directories

$my_dir = Get-ChildItem -Recurse -path X:\ $my_other_dir = Get-ChildItem -Recurse -path W:\ Compare-Object -ReferenceObject $my_dir -DifferenceObject $my_other_dir