Answer the question
In order to leave comments, you need to log in
What if submit resubmits data when the submit button is clicked?
There is a form that substitutes the data from the input field in the URL and opens the link in a new tab:
<form action="https://mysite.ru/search#" method="post" class="search" id="formurl" target="_blank">
<input type="search" id='search01' name="search2" />
<button type="submit" name="submit" onclick="formurl.action += encodeURIComponent(search01.value)" />
</form>
<script>
function update_href(id,value){
document.getElementById(id).href='https://mysite.ru/search#'+value;
}
</script>
<input type="text" onchange="update_href('link', this.value );" size=30>
<a href="https://mysite.ru/search#" target="_blank" id="link">Перейти</a>
Answer the question
In order to leave comments, you need to log in
just block the button after pressing it so that you cannot press it twice
Well, either block, as mentioned above, or
... onclick="formurl.action = formAction + encodeURIComponent(search01.value)" ...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question