jquery ajax – post form having file uploads
To post a form using jQuery Ajax, we can directly call jQuery .ajax() methods passing form data. The form data can be constructed using FormData. read more
jQuery how to load a url into an element
jQuery .load() can be used to make an Ajax call (GET or POST) and load the results into an element by settings result into its read more
jQuery post form data using ajax
Javascript code snippet to submit a form using POST to server and process returned data. Here when submit button is clicked we serialize whole form read more
jQuery jsonp and cross domain ajax
JSONP or “JSON with padding” provides a method to request data from a server having a different domain. Typical web browser prohibit cross domain request due to same read more