You are browsing the archive for jQuery Plugins.

HTML5 Data attributes and jQuery’s .data – pairing made in heaven

May 12, 2010 in jQuery Plugins

UPDATE jQuery 1.4.3+ now does this in core. No need for this plugin! I really like the idea of the data-* properties in the spec for HTML5, unfortunately they’re not supported directly by any browser it seems yet; even jQuery 1.4.2 doesn’t really support them (due to the non-browser support I guess). Anyway, I really [...]

jQuery Keyz Plugin

February 24, 2010 in jQuery Plugins

The purpose of this plugin is to easily facilitate the end user to create and hook key presses for their own use. Usually you would need to know what key links with which keycode etc. Usage It’s as easy as these steps: Include jquery – either from CDN or local source Include jquery.keyz.js call the [...]

jQuery Plugin: Element Existence

February 24, 2009 in jQuery Plugins

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 use it you can now do this: if ($('#elem').exists()) { /* do something */ } [...]

Enhancing your listings with jQuery and QuickSearch

February 17, 2009 in jQuery Plugins

Ever Wanted to have a way to filter/search a list without having to code extra to the serverside? Well maybe the jquery QuickSearch plugin from rikrikrik.com might be the answer

jQuery image Preloader Plus Callbacks

February 11, 2009 in jQuery Plugins

Hi all, After comments on the previous version by Roberto, I looked into creating callbacks within the code so that it can be used in the way that Roberto had outlined, also I used it as a way to improve my knowledge a little. After a while I got stuck and figured out a potential [...]

jQuery plugin: ajax Head Request

January 21, 2009 in jQuery Plugins

I recently looked into the head request for pulling data without much overhead. PHP can send headers out to the browser in a response.. so I looked into a way to get these headers. I came across a page that outlined using head requests via the xmlhttprequest object. I looked inside jQuery for this functionality [...]

jQuery image Preloader

January 6, 2009 in jQuery Plugins

– 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 the images is rather annoying. Also I much prefer CSS roll overs to Javascript ones [...]