jquery html form submit read information code example
Example 1: javascript get form data
<html>
<form id="myForm">
<input type="text" name="email" value="[email protected]">
</form>
<p id='text'></p>
<script>
window.setInterval(()=>{
var myForm = document.getElementById('myForm');
var text = document.getElementById('text');
text.innerText = myForm.elements['email'].value;
}, 1);
</script>
</html>
Example 2: ajax post form listener button
$("button").click(function(e) {
e.preventDefault();
$.ajax({
type: "POST",
url: "/pages/test/",
data: {
id: $(this).val(),
access_token: $("#access_token").val()
},
success: function(result) {
alert('ok');
},
error: function(result) {
alert('error');
}
});
});