jQuery Plugin: Element Existence

Just a Quick little snippet really.. Over at JqueryForDesigners.com @rem mentioned about checking if an element exists or not, I’ve been doing this for some time using the following snippet: jQuery.fn.exists = function() { return (this.length > 0); }; to … Continued

jQuery image Preloader

– New version with Callbacks now available – Recently I looked into preloading images via Javascript. I found all the usual ones which require you have a list of all the images you wish to preload. For me though, specifying … Continued