(function($){ $.fn.zoombox = function(opts){ return this.each(function(){ if($.browser.msie && $.browser.version < 9 && !window.XMLHttpRequest){ return false; } }); } })(jQuery); $(function(){ $(".shares li").each(function(){ $(this).children("a").hover(function(){ $(this).parent().find(".con").fadeIn(); },function(){ $(this).parent().find(".con").fadeOut(); }); }); $(".shares li.i3 a").zoombox(); });