You are browsing the archive for plugin.

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 [...]