I currently have an html file named abc.html
which contains two input elements
<input type="text" id="txt"></input>
<input type="button" id="btn"></input>
The button simply displays the textbox value.
Is there any way that I can add some url parameter so that I can specify the value of textbox.
Can the button onclick be automatically initiated when the page loads.
Inshort I want to give url parameters such that when I open the url I just see the value that I passed in the parameter. Button onclick
event should also be initiated.