views:

603

answers:

1

I have a select tag with :onchange which updates the page with relevant data, however, I don't want to do it with Ajax because it is messing up my navigation structure.

I want to use select_tag and when they its is changed it sends a regular HTML request which refreshes the entire page.

How can I do this.

A: 

Here is a good solution:

http://stackoverflow.com/questions/579855/rjs-ajaxified-selecttag

Sam