..


Sponsored Links

How can I upload data via Ajax using jQuery?

jQuery has several methods for Ajax (for a complete overview suggest you take a look at jQuery guide on this site), the easiest way to perform asynchronous loading of data into a web page is to use The load () method. Here's an example:

 



 $ ('# Container'). Load ('source-dati.html');

 
With this simple line of jQuery code shall recover the contents of the file ": source-dati.html" to load it (asynchronously) on the page inside the tag (such as a <div>) with ID "# container" .

In the same category ...
E-Learning
ASP Zero (Ebook) ASP Zero (Ebook)
Learning Microsoft ASP and VBScript from scratch. At only 29 €.
Javascript (Course) Javascript (Course)
Complete guide to client-side scripting. From 39 €.
PHP (Course) PHP (Course)
Full course for creating dynamic Web sites. From 49 €.
Sponsored Links