Jquery – Color Picker
It depends on jQuery 1.4.2. The Jquery powered Color Picker is styleable using a single stylesheet. It works in an unobtrusive fashion, by just turning html select inputs into a sexier equivalent....
View ArticleJquery serializePost()
jQuery has a couple of useful functions that you should be using quite a lot. .serialize() and .serializeArray(). These useful functions will take your form and spit out something you can send off in...
View ArticlejQuery Tagit – A jQuery tagging plugin
It depends on jQuery 1.4.2. and jQuery.ui 1.8 The Jquery Tagit Plugintransforms an html unordered list into a unique tagging plugin.Why unique? Because jQuery Tagit uses jQuery UI’s auto-complete...
View ArticlejQuery UI Widget Development Skeleton
Quite often when I go to create a new widget I find myself clearing out all the old junk from another one of my widgets to try and create a skeleton, then go through and remember what the heck each...
View Article#1 Crime of jQuery – DOM Abuse
The Crime Here is an example, $(function(){ $('#id').change(function(){ //do stuff }); $('#id').css('border-color', '#ff0000'); var val = $('#id').val(); }); See what is happening here? There are...
View ArticleNifty Tricks: Setting a fallback source if an image fails to load.
This useful little snippet allows you to set a backup source for an image if it fails to load. useful in a lot of situations, e.g. listing a directory contents, putting an image next to each item based...
View Article