Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <span class='tags' id='html'>html</span>
  2. <span class='tags' id='php'>php</span>
  3. <span class='tags' id='sql'>sql</span>
  4.  
  5. $('.tags').mouseover(function() {
  6. alert(this.id);
  7. });
  8.  
  9. $('.tags').hover(
  10. function() { console.log( 'hovering on' , $(this).attr('id') ); },
  11. function() {}
  12. );
  13.  
  14. $(".input-box").hover(function(eventObj) {
  15. alert(eventObj.target.id);
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement