Code:
<head> <script> function getAction() { alert(document.forms[0] .action);} } </script> </head> <body> <form action='la-la-la.html' method=get> <input name=action type=text> <input type=submit> </form> <input type=button value='GET!!' onClick='getAction();'> </body>
Is it possible from function getAction()???
Comment