/* * Waiting 1.0 - jQuery Plugin * http://www.smartango.com/articles/jquery.waiting.plugin * Copyright (c) 2009 Daniele Cruciani * Dual licensed under the MIT and GPL licenses */ (function($){ $.fn.waiting = function(options) { var settings = $.extend({ css: {'opacity':'0.6','background-color':'#777'}, imgsrc: "aj-blue.gif" },options); var offset = this.offset(); var height = this.height(); var width = this.width(); var id = this[0].id; var newid = id + "waiting"; this[0].waitid = newid; var div = $("
").css({'position':'absolute','top':offset.top,'left':offset.left,'height':height,'width':width}).css(settings.css) .attr('id',newid).appendTo("body"); var img = $("