<a href="#" value="1">1</a>
<a href="#" value="2">2</a>
<a href="#" value="3">3</a>
$(document).ready(function(){
$('a').click(function() {
alert($(this).attr('value'));
})
});
Whenever I click on any of the numbered links above, I expect to see an alert pop up displaying the number. However, for some reason this is not happening. My goal is to have an alert box show up whenever any link is clicked.