Guest User

Untitled

a guest
Jan 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $("#user-tabs ul").idTabs({
  2. click: function(id, all, container, settings) {
  3. alert(id);
  4. }
  5. });
  6.  
  7. $("#user-tabs ul").idTabs ->
  8. click: (id, all, container, settings) ->
  9. alert(id)
  10. return
  11.  
  12. $("#user-tabs ul").idTabs(function() {
  13. return {
  14. click: function(id, all, container, settings) {
  15. alert(id);
  16. }
  17. };
  18. });
  19.  
  20. $("#user-tabs ul").idTabs
  21. click: (id, all, container, settings) ->
  22. alert(id)
  23. return
  24.  
  25. $("#user-tabs ul").idTabs
  26. click: (id, all, container, settings) ->
  27. alert(id)
  28. return
Add Comment
Please, Sign In to add comment