Advertisement
jurgemaister

Untitled

Aug 8th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.21 KB | None | 0 0
  1. function score() {
  2.     var press = jQuery.Event("keypress");
  3.     press.ctrlKey = false;
  4.     press.which = 40;
  5.     $.trigger(press);
  6.     setTimeout(300, score());
  7. }
  8.  
  9. $(document).ready(function() {
  10.     $("#hplogo-c").click(score());
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement