Tag: Ajax
-

Image File Upload With Ajax and PHP
Uploading files to servers is required in almost every website and web applications. To make file uploading easier and user friendly it should be done via an Ajax call. With Ajax your whole page will not be sent to server and hence user will not have to wait more. In this tutorial I will show…
-

Inline Editing HTML table with jQuery Ajax and PHP
I was doing a project using jqGrid. Its really a good jQuery Grid Plugin to do hard things easily with few lines of code. I saw a feature of inline editing of records in grid. jqGrid offers many features which really makes your grid functional in an exceptional way. Just few lines of codes and…
-

Automatically Load Content and Refresh Div Using jQuery
Automatically loading content and displaying it without refreshing the page is an important feature any websites could have. Especially for news website and blog must have this feature to display most recent news/posts. Even top social websites have these features to display latest posts/tweets. You can also implement this feature easily using jQuery. You can…
-

Live Username Availability Checker and Password Strength Indicator With jQuery and Ajax
You would have seen various websites which checks username availability in real time and also tells you strength of your password during registration process. For example take “gmail signup” or twitter sign up process, their registration process is user oriented and very flexible, it tells user everything on run time. This tutorial is intended to…
-

Delete Records From Database Using jQuery
Hello guys, if you have seen my older posts then you already know how to insert record in database using jQuery. I also explained the process to fetch record from database using jQuery. The left part is how to delete the records in a database using jQuery. I am dedicating this post to tell you…
-

Create Ajax Based Searching System with PHP and jQuery
Google Suggest is a perfect example of Ajax based searching. Whenever you enter any letter in the search box Google suggest starts showing you some “suggestions”. How those suggested elements come to you? It’s because of Ajax. Whenever you enter any letter in Google search box a javascript runs behind the scene and passes that…