Send Form Data as JSON via AJAX with JQuery

Send Form Data as JSON via AJAX with JQuery

In previous post we have seen how to send data in serialized form with ajax using searialize() method. Now we will see how to post json data with ajax using serializeArray(). Before proceed we must know what is the difference between serialize() and serializeArray(). serializeArray creates an array and serialize is used to mean a … Read more

Load More Data Onclick Using Jquery in PHP with AJAX

Now a days Facebook, Youtube and Twitter are using load more data techniques. This provide the features of loading data dynamically using AJAX instead of giving pagination links. This is very useful techniques because load data without reloading a webpage. Basically AJAX and Jquery are responsible for this dynamic loading of Data. In this article … Read more