Reputation: 25
Have some code
<a href=# onclick=alert("in onclick")> Click me </a>
I want to append an additional event to onclick, e.g. if the user clicks on the link, he gets 2 messages:
Upvotes: 1
Views: 912
Reputation: 824
<a href='#' id='your_link' onclick='alert("in onclick")'> Click me </a>
In your javascript :
$('#your_link').click(function()
{
alert('jquery onclick') ;
}) ;
Upvotes: 5