jquery.hover 302 B

12345678910
  1. # This was cloned from a TextMate bundle for yasnippet.
  2. #name : hover
  3. #key : .hover
  4. #condition : (when (boundp 'jquery-project) jquery-project)
  5. # --
  6. .hover(function() {
  7. ${1:// Stuff to do when the mouse enters the element;}
  8. }, function() {
  9. ${2:// Stuff to do when the mouse leaves the element;}
  10. });$0