I have a form that looks like:
<form id="search-form" action="about:blank" target="none">
<input type="text" id="search-text">
<button id="search-submit"> Go! </button>
</form>
<iframe name="none" style="display:none"></iframe>
While I don't want my form to update the page, yet I want autocomplete to work properly so I send a blank page to the iframe every time the form is submitted.
Will this solution work on every browser? (Or should I create a "/blank" blank page response on the server...)