Guest User

Untitled

a guest
May 27th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. document.observe("dom:loaded", function(){
  2. $('container').observe('click', function(event){
  3. elm = event.element();
  4. if(elm.hasClassName('toggle')){
  5. alert('Toggle');
  6. event.stop();
  7. };
  8. });
  9. });
Add Comment
Please, Sign In to add comment