/* * jQuery :attached, :detached - v1.1 - 2/13/2010 * http://benalman.com/projects/jquery-misc-plugins/ * * Copyright (c) 2010 "Cowboy" Ben Alman * Dual licensed under the MIT and GPL licenses. * http://benalman.com/about/license/ */ (function($){$.extend($.expr[":"],{attached:a,detached:function(b){return !a(b)}});function a(c){var b=$.contains,d=document.documentElement;if(b){return b(d,c)}while(c=c.parentNode){if(c===d){return true}}return false}})(jQuery);