Having a hard time figuring out why this alert code is being called once on 1st click, twice on 2nd click, four times on 3rd click, eight times on 4th click, etc...
$(document).ready(function() {
$('#preventClickDiv a[href]').click(function(e){
e.preventDefault();
alert('Prevented');
newClick();
});
});
function newClick(){
$('#preventClickDiv a[href]').click(function(e){
e.preventDefault();
alert('Prevented');
newClick();
});
}
newClick()? Just remove it completely. – millimoose Jun 28 '12 at 18:42