Guest User

Untitled

a guest
May 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. MyNav = {
  2. initNavTrough: function(){
  3. $('nav-products').observe('click', function(ev){ ev.stop(); swapSubnav('cat-list')});
  4. }
  5.  
  6. swapSubnav: function(el){
  7. var visibles = new Array();
  8. $$('#subnav ul').each(function(e){
  9. if(el.style.display != "none"){ visibles.push(e) }
  10. });
  11. visibles.each(function(e){ e.style.display = "none" });
  12. $(el).style.display = "block";
  13. }
  14. }
  15.  
  16. document.observe('dom:loaded', MyNav.initNavTrough);
Add Comment
Please, Sign In to add comment