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 want to load my jquery tabs if a certain condition is true. Is it possible to have a ruby if statement embedded in document.ready() or by the time that is processed its too late? Is there a better way to accomplish this?

This doesn't seem to work:

<script>
$(document).ready(function() {
    <% if @event.scheduled.empty? %>
    $( "#tabs" ).tabs();    
    <% end %>   
});
</script>
share|improve this question
Does the file that is in have .erb as an extension? – Max Aug 9 '12 at 15:19
Yes it is in a show.html.erb file – turbo2oh Aug 9 '12 at 15:22
I just tried it and it worked for me using rails 3.1. Are you sure @event.scheduled.empty? is the right condition to use? – Max Aug 9 '12 at 15:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.