Quoting Erwin <[email protected]>: > I am trying to run a bloc in a js.erb script , but I don't get ir ... > debugger show that the test is true, so it should run .. > > <% if (params[:blog_page].to_i > 0) do %> > > alert("should redisplay the dashboard page"); > window.location.href = <%= backoffice_url %>; > location.reload(); > $('#blog-info').html( '<%= escape_javascript(render :partial => > "backoffice/dashboards/lists/blog_info") %>'); > $('#blogInfo').tab('show'); > > <% end %> > > what's wring with tho writing ?? >
The 'do' after the 'if' condition is incorrect. Remove it. HTH, Jeffrey -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

