Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. var fUpdate;
  2.  
  3. // Doesn't work:
  4. $select.bind("change", fUpdate);
  5.  
  6. // Works:
  7. $select.bind("change", function (e) {
  8. fUpdate(e);
  9. });
  10.  
  11. fUpdate = function (e) {
  12. //...
  13. };
Add Comment
Please, Sign In to add comment