Advertisement
Guest User

Untitled

a guest
Jun 16th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $( document ).ready(function() {
  2. $('#img').on('focusin', function() {
  3. console.log('image focusin');
  4. });
  5.  
  6. $('#p').on('focusin', function() {
  7. console.log('paragraph focusin');
  8. });
  9.  
  10. $('#img').on('click', function() {
  11. console.log('image click');
  12. });
  13.  
  14. $('#p').on('click', function() {
  15. console.log('paragraph click');
  16. });
  17.  
  18. $('#inp').on('focusin', function() {
  19. console.log('inp focusin');
  20. });
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement