<input name="KeywordBox" class="BasicSearchInputBox" type="text" value="Keyword Search..."/>
<div class="searchBtnHolder"><a class="searchButton" href="#" type="submit"><span>Search</span></a></div>
I need to keep the user input text in the inputbox even after submit. When user submits, what happens is the value of inputbox is grabbed and added to the URL as querystring like mysite.com/index.aspx?kwd=userinput..
But it would be nice if we could keep what the user typed in so they know what they typed in and don't have to wonder!! Using jquery, is it possible? Can we not grab the value back from the url and set it back in the inputbox??