Answers for "html from submitting with out reload"

0

html from submitting with out reload

1his form has no submit input, thus it won’t reload the page because the form will never get submitted, but the javascript function will be executed the button input is clicked.


2
3
4
<form action="#">
    <input type="text"/>
    <input type="button" onclick="yourJsFunction();"/>
</form>
Posted by: Guest on March-16-2022

Code answers related to "html from submitting with out reload"

Browse Popular Code Answers by Language