Posts Tagged ajax
Ajax:Quickly submit a form in JQuery using serialize
I am sure you often do a form submission via Ajax and more easily using JQuery. But did you know using a simple method called serialize in JQuery form submission could be more easier. Serialize method converts the form elements & values in an encoded string and submits to the form action. This h
Read Full PostShow loading icon in JQuery Ajax request
JQuery is the most used Javascript framework. It's exceptionally simpler and famous. The best part of JQuery is that it has very nicely done documentation and lot many resources available online. Lately, while doing one of my codeigniter I used JQuery and wanted to share a little snippet of code
Read Full PostAsynchronous and Synchronous AJAX calls
AJAX as you might be knowing stands for Asynchronous JavaScript and XML, but in this article we are going to see what is the difference between Asynchronous and Synchronous AJAX call ? Let's see how an AJAX call is made from client and what it involves. An object of the browser's XML HTTP Requ
Read Full Post