Hi - I'm learning jQuery and can't figure this out:
Here's the HTML
<a id="myid" name="myid" href="stub">click here</a>
and the jquery snippet:
$("#myid").click(function() {
alert('Hello from click');
});
Yet when I click on the link no alert displays. Something basic no doubt, What could I be doing wrong?
Thanks