I'm having a hyperlink and upon clicking on it I want to show tha alert pop-up but it's not working. Can anyone tell me where I'm doing wrong? jsfiddle
Following is my HTML Code:
<a href="#" class="que_issue">QUE414</a>
Following is my jQuery Code:
$(document).ready(function(){
$(".que_issue").click(function() {
alert("Jumbo");
});
});