jquery form data
$(document).ready(function() {
// process the form
$('form').submit(function(event) {
// get the form data
// there are many ways to get this data using jQuery (you can use the class or id also)
var formData = {
'name' : $('input[name=name]').val(),
'email' : $('input[name=email]').val(),
'superheroAlias' : $('input[name=superheroAlias]').val()
};
// process the form
$.ajax({
type : 'POST', // define the type of HTTP verb we want to use (POST for our form)
url : 'process.php', // the url where we want to POST
data : formData, // our data object
dataType : 'json', // what type of data do we expect back from the server
encode : true
})
// using the done promise callback
.done(function(data) {
// log data to the console so we can see
console.log(data);
// here we will handle errors and validation messages
});
// stop the form from submitting the normal way and refreshing the page
event.preventDefault();
});
});var fd = new FormData();
fd.append( 'file', input.files[0] );
$.ajax({
url: 'http://example.com/script.php',
data: fd,
processData: false,
contentType: false,
type: 'POST',
success: function(data){
alert(data);
}
});
Also in JavaScript:
- vuejs show content on loaded
- date masking javascript to not allow /
- react native curved view
- javascript leave page warning
- react map wait axios call
- javascript date parse yyyy-mm-dd
- How to make remove buttoon on table using js DOM
- debugger js
- declare an object in jquery\
- registeing components in vue
- change span value javascript
- javascript datetime
- how to get form all filed with properties in jquery
- javascript tofixed 2
- mongodb delete duplicate documents
- how to use await to console
- node js get files in dir
- sum all fields in nested json logstash
- how to set input of time type to current time on initialization
- how to connect react to backend
- how to draw flower petals around circle javascript
- How many different types of JS alerts do we have?
- javascript random number
- i18n react meta description