If you don't have image manipulation capabilities available on your server, fortunately, you can still implement a basic photo cropping tool using pure CSS &…
IE 9 jQuery issue – getElementsByTagName
If you're testing your jQuery code in IE 9, you might run across the "Object doesn't support this property or method – getElementsByTagName" error. The…
jQuery CSV Export
Is it possible to do a CSV export with pure JavaScript? Close, but you still need the help of a server-side script to tell the…
A basic draggable photo cropper
If you have user generated photos, and wish to crop them down to a thumbnail, it's not always easy to decide which area of the…
jQuery disable right click context menu
You can find a quick one-liner on how to disable the browser context menu anywhere, but I just wanted to make sure you know about…
jQuery combine all lists into one list
This little trick comes in handy if your site runs on a CMS. The editors within CMS's have a tendency to create multiple lists to…
Simple jQuery Tabbed Content
Goal: Produce a simple, small script which gracefully degrades without JavaScript. Note: The HTML below is pulled from a Zope Page Template (with embedded Python),…
IE 7 z-index bug – drop-down menus
If you've struggled to figure out why your drop down menus are showing behind other content, you may have come across the IE 7 z-index…
jQuery to “link” labels with checkboxes
If you generate checkboxes and labels dynamically, or just don't feel like assigning ids to all of your checkboxes and corresponding for attributes to all…
jQuery dialog load external URL
The solution is simple, but coming to it was quite the opposite. After browsing many posts which don't deal with the fact that external URL…