I'm trying to catch the jquery click event on an tag with a class, but its not firing.
HTML: (there's 10 blocks)
<div id="block1">
<div class="slideshow">
<a class="popup" href="#imgform">
<img src="<?php echo 'core/controllers/foto.php?o=1'; ?>" title="1" width="271px" height="413px">
</a>
</div>
</div>
<div id="block2">
<div class="slideshow">
<a class="popup" href="#imgform">
<img src="<?php echo 'core/controllers/foto.php?o=2'; ?>" title="2" width="200px" height="129px">
</a>
</div>
</div>
jQuery:
$(document).ready(function() {
var $popup = $('a.popup');
$popup.live('click',function(){
var id = $popup.parent().parent().attr('id');
id = id.substring(5);
alert(id);
$.get('index.php?o='+id, function(data) {
$popup.fancybox({
//do stuff
});
});
});
});
The alert is always returning 1 for some reason.
live()is deprecated. Useon– Aesthete Dec 13 '12 at 11:47$as the start of a variable name if it's going to be used as a jQuery selector. – Aesthete Dec 13 '12 at 11:55