I have variable name and value for hidden input tag that I want to append into form right when submit button is clicked. How do I go about coding it?
Here's my code:
<script type="text/javascript">
hname="reference";
hvalue="1";
function insertInput(){
document.write( "<input type='hidden' name='" + hname + " ' value=' " + hvalue + " '/><br/>");
}
</script>
<form id="form1">
<p><label>Username:</label> <input type="text" name="username" size="10"/></p>
<p><label>Password:</label> <input type="password" name="password" size="10"/></p>
<p id="hidden"><!-- Insert Hidden input tag here --></p>
<button type="submit' onClick="insertInput();">Log In</button>
</form>
I can't seem to get it work. Please help! Thanks in advanced!
That won't work because
document.write
only works while the page is loading, trying to use it after the page has loaded will fail.You could do it with pure DOM scripting but I would suggest using a DOM library like jQuery, they make doing things like this much easier.
Here's a way you could do it with jQuery:
document.write()
only works while the document is being parsed. As soon as the document is in ready state (i.e. theDOMContentLoaded
event has been fired),document.write
will implicitly calldocument.open()
, which in turn resets your document.You want to use the DOM methods for this:
Try this: