Joe MooreJoe Moore
Standup 06/14/2007
edit Posted by Joe Moore on Thursday June 14, 2007 at 08:14PM

Interesting Things

  • Brown-bag lunch topic today: "Smalltalk is dead -- long live Smalltalk!"

    Ask for Help

  • "How can we get a drop-down list/select box to change our browser's URL? We want people to see forum posts from the 'Last 7 Days', so the URL should change when they choose that from the select box." One option is to wrap it in a form and use the onChange() JavaScript event hook to submit the form:

<code>
<% form_tag(:controller => forum, :action => :filter) do %>
  <%= select_tag('recent', options_for_select(filters]), {:onchange => "this.form.submit();"}) %>
<% end %>
</code>