Make additional actions on click on external links

2012-05-28 Thread cosmindumy
Hello,
How can I make additional actions on click event on external link? It
doesn't implement onClick method.
Thanks.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Make-additional-actions-on-click-on-external-links-tp4649516.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Make additional actions on click on external links

2012-05-28 Thread Thomas Götz
You could use e.g. jQuery event registration:

$(#target).click(function() {
  alert(Handler for .click() called.);
});

See http://api.jquery.com/click for more details.

   -Tom


on 28.05.2012 at 11:09 cosmindumy wrote:

 Hello,
 How can I make additional actions on click event on external link? It
 doesn't implement onClick method.
 Thanks.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org