Team:UNITN-Trento/JS/Laboratory/Meetings
From 2013.igem.org
(Difference between revisions)
(Created page with "$(document).ready(function() { $('#photo a').each(function() { $(this).click(function(e) { e.preventDefault(); div = $('<div/>'); ...") |
|||
Line 1: | Line 1: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
- | $(' | + | $('.photo a').each(function() { |
$(this).click(function(e) { | $(this).click(function(e) { | ||
e.preventDefault(); | e.preventDefault(); |
Revision as of 08:39, 24 September 2013
$(document).ready(function() {
$('.photo a').each(function() { $(this).click(function(e) { e.preventDefault();
div = $('<div/>'); $(div).addClass('tn-hoverTag');
// $(div).append('' + $(_self).html() + '
'); $(div).append('<img src="' + $(this).children("img").attr('src') + '" />'); $(div).append('
Click to exit'); $(div).children().wrapAll('<div/>');
$(div).click(function(e) { e.preventDefault(); $(div).remove(); $('#tn-content .tag').removeClass('active'); }); $('body').append(div); }); });
});