/ Published in: HTML
Expand |
Embed | Plain Text
<html> <head> </head> <body> <form name="test" action="POST" method="/somewhere/nowhere" onsubmit="return doHack()"> <pre> username: <input type="input" name="username" /> password: <input type="password" name="password" /> <input type="submit" value="submit"> </pre> </form> <script> //$(function() { //on document ready //$("#searchBoxGoesHere").html("other: <input type=input name=other />"); //}); function doHack() { $("#searchBoxGoesHere").html(""); return true; } </script> </body> </html>
You need to login to post a comment.
