How do i open link to a new winow?

Pretty simple question right? can’t seem to figure it out.

On 5/11/06, Jon Mr [email protected] wrote:

Pretty simple question right? can’t seem to figure it out.

Rails doesn’t really have anything to do with it. Just set a unique
target name in your anchor tag.

http://www.w3.org/TR/REC-html40/present/frames.html#adef-target

– James

<%= link_to “something”, { :controller => “mycontroller”, :action =>
“myaction” }, :popup => true -%>

On 5/11/06, Chris H. [email protected] wrote:

<%= link_to “something”, { :controller => “mycontroller”, :action =>
“myaction” }, :popup => true -%>

ActionView::Helpers::UrlHelper

I like that even better.

– James