Exan
Exan

Reputation: 25

JQuery append event to existing event

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:

  1. from standard onclick
  2. from jQuery onclick

Upvotes: 1

Views: 912

Answers (1)

Romain Deveaud
Romain Deveaud

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

Related Questions