0
How to put a delay
at the event this.form.submit()
?
onblur="this.form.submit()"
<input type="text" name="fornecedores"
onchange="this.form.submit()" autocomplete="false"
value="<?php echo $fornecedores?>"
class="fornecedores" placeholder="Fornecedores"
/>
related: http://stackoverflow.com/questions/24849/execute-script-after-specific-delay-using-javascript
– novic
related: http://stackoverflow.com/questions/1183872/put-a-delay-in-javascript
– novic
Ola I have no knowledge of javascript do not know how to adpita this article to my question
– Fabio Henrique
try onblur="setTimeout(this.form.Submit(), 3000)"
– Mathiasfc
Can you explain what you want to do? What makes you need a "delay"?
– Sergio