jquery.toggle 319 B

1234567891011
  1. # This was cloned from a TextMate bundle for yasnippet.
  2. #name : toggle
  3. #key : .toggle
  4. #condition : (when (boundp 'jquery-project) jquery-project)
  5. # --
  6. .toggle(function() {
  7. ${1:// Stuff to do every *odd* time the element is clicked;}
  8. }, function() {
  9. ${2:// Stuff to do every *even* time the element is clicked;}
  10. });
  11. $0