jQuery(function(){ /** * very simple lightbox * @link http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/super-simple-lightbox-with-css-and-jquery/ */ jQuery('a.extension_screenshot').click(function(e) { e.preventDefault(); //Get clicked link href var image_href = jQuery(this).attr("href"); // create lightbox if needed var $lightbox = jQuery('#plugin__extensionlightbox'); if(!$lightbox.length){ $lightbox = jQuery('

Click to close

') .appendTo(jQuery('body')) .hide() .click(function(){ $lightbox.hide(); }); } // fill and show it $lightbox .show() .find('div').html(''); return false; }); });