Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't know the Prototype framework, and I need to translate a simple jQuery script to prototype.

This is jQuery:

$(document).ready(function(){

  $(".menu_button").toggle(
      function() { $("#nav_bg").css('display','block');},
      function() { $("#nav_bg").css('display','none');}
  );
});

Anyone can help me tralating it to prototype?

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted
document.observe('dom:loaded' , function(){
    $$('.menu_button').each(function(s) { 
        s.observe('click', function(){
            $('nav_bg').toggle();
        });
    });
 });

I think this will work. I dont think you have to be explicit about the display:block, Im not sure how prototype decides which display it decides to give an object on toggle, but its usually pretty good about picking the right one.

If you do need to be explicit

document.observe('dom:loaded' , function(){
    $$('.menu_button').each(function(s) { 
        s.observe('click', function(){
            if ( $('nav_bg').getStyle('display') === 'block')
                $('nav_bg').setStyle({'display' : 'none'});
            else
                $('nav_bg').setStyle({'display' : 'block'});
        });
    });
});

Not very graceful, and Im sure prototype has a better way of doing it. But Im not a master and this will get it done.

share|improve this answer
Thank you! This will be also a good exercise to learn Prototype! The second one works, thanks a lot! – Pennywise83 May 22 '12 at 18:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.