this is my url
<%=url_for :controller=>'admin', :action=>'admin2'%>
I want to see the path in alert message when I click to button
<input type="button" value="alert" onclick="try()">
I want to call that try() method by rjs,
I believe try is a reserved word in javascript (used for try{} catch).
Assuming your function is defined somewhere sensible (eg
application.js), just
page.call 'your_function'
should be enough.
I believe try is a reserved word in javascript (used for try{} catch).
Assuming your function is defined somewhere sensible (eg
application.js), just
page.call 'your_function'
should be enough.