How can i specify the full url of the page i want to access using a button?
ex: http://localhost:3000/users/1
I can use link_to as: link_to 'Home', "http://localhost:3000/ users/1" But i want to use a button in my form instead.
Thanks, Pratik
How can i specify the full url of the page i want to access using a button?
ex: http://localhost:3000/users/1
I can use link_to as: link_to 'Home', "http://localhost:3000/ users/1" But i want to use a button in my form instead.
Thanks, Pratik
<INPUT TYPE=BUTTON onClick="window.location='http://localhost:3000/ users/1';" VALUE="Home">
Did the trick!