Guest User

Untitled

a guest
May 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // add it to more than one element at a time using invoke
  2. $$('#first-name, #last-name').invoke("observers","change blur focus",function( event ){
  3. // do something in here
  4. });
  5. // or add it to a single element directly
  6. $('phone-number').observers("change blur focus",function( event ){
  7. // do something in here
  8. });
Add Comment
Please, Sign In to add comment