Lets say I have a form as below. How do I pass the value in the textbox named “configname” to the onclick function handler??
<form id="loadconfigform">
Config Name: <input type="text" name="configname" />
<input type="button" value="Submit" onclick="onLoadConfigPress(configname)" />
</form>
Give an
idto input field:Now modify click handler as follows:
Or if you have only one form on that page, you could also use
formsarray: