Advertisement
saasbook

Untitled

Mar 15th, 2012
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.27 KB | None | 0 0
  1. <a href="javascript:monkey_alert()">Click me</a>
  2.  
  3. <a href="#" onclick="monkey_alert()">Click me</a>
  4.  
  5. <a href="#" id="monkey_link">Click me</a>
  6.  
  7. // in monkeyscript.js (using jQuery library; different syntax for Prototype):
  8. $('#monkey_link').bind('click', monkey_alert);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement