jQuery – Loop through checkboxes

Simple enough, the code below will loop through each of the checkboxes and separate them with a comma – remember to the change the name to your own checkbox array (mine, in this instance, is called “contact[]“). jQuery("input[@name='contact[]‘]:checked").each(function() { contact += sep+jQuery(this).val(); sep = ", "; });

Read the Rest...
jquery.colour issue

This relates to the “jQuery tabs plugin” post, as I stumbled across this issue that left me scratching my head for hours! If you are using this jquery.coluor plugin, then you may have already found this issue out, if not, read on. In short, the colour plugin allows your fade from one colour to another, [...]

Read the Rest...