search for: new_window_name

Displaying 3 results from an estimated 3 matches for "new_window_name".

2012 Dec 08
9
link_to popup
Hello All, I have a link. Which I want to open as a new window :- <%= link_to "Google", "https://www.google.com", :popup => [''new_window_name'',''toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes''] %> But it is opening in the same page.... Any suggestions how to do it ?? Even hover will be fine... Thanks, Avi -- You received this message because you are subscribed to...
2007 Jul 31
2
link_to
Im trying to use the link_to helper to open a blank window which is basically just a framed window to display user info without all the extra distractions that come along with opening this window. Here is what I got: <%= link_to ''Airline Preferences'', {:action => ''airline_preferences'', :id => @user.id, :method => ''post'' }, :target
2007 Apr 11
2
Open Browser Window help
When I previously designed my static sites in dreamweaver, I used an Open Browser Window behavior which opened a URL in a new window of fixed size by inserting the following: <a href="javascript:;" onclick="MM_openBrWindow(''example.html'', ... ''width=300,height=300'')</a> Is there a simple way to do the same thing in ruby?