Scroll to a Section having id attribute using jQuery

Introduction We will see how to scroll to a section having id attribute using jQuery API. Suppose you have several links at the top of the page and manually scroll down to a particular section you just need to click on a link and you will simply jump to the section without scrolling down. Such section may be paragraph, div…

PHP REST API AJAX jQuery CRUD Example

Introduction In this example we will see an example on PHP AJAX jQuery CRUD. CRUD is an acronym for four operations such as Create, Read, Update and Delete. We are going to perform CRUD operations on company details. We will use here MySQL database to store company detail information. We will perform each operation asynchronously through AJAX technique using jQuery…

Spring Boot jQuery AJAX CRUD Example

Introduction In this example I will show you an example on Spring Boot jQuery AJAX CRUD. CRUD is an acronym for four operations such as Create, Read, Update and Delete. I am going to perform CRUD operations on company details. I will use here MySQL database to store company details information. I will perform each operation asynchronously through AJAX technique…

How to use AJAX, jQuery in WordPress Plugin

Introduction We will discuss here how to use AJAX in WordPress plugin. We will use the same plugin we created in the example. We have seen how to create MySQL table in our previous tutorial. This example will also show you how to en-queue JavaScript files. Till now our simple email subscription form could not perform any action but in…

AJAX File(s) Upload using Python Flask and jQuery

File(s) Upload I will create an example here and I will show you how to upload single file or multiple files using AJAX and jQuery along with Python Flask technologies. You can either upload single file using browse button or multiple files using browse button by holding CTRL key(in Windows OS) from keyboard while selecting multiple files. The file or…

Python Flask Username Availability Check With MySQL AJAX

Username Availability Check This tutorial shows an example on Python Flask username availability check with MySQL, AJAX. Sometimes you may need to check username availability immediately before a user submits the form after filling a lengthy signup form or any other forms. In this case you can use AJAX with any technologies like PHP, Codeigniter, Servlet, Struts, JSF, Spring etc….

Python Flask Multi-Step Registration Form With MySQL jQuery

Multi-Step Registration Form You will see an example on Python Flask multi-step registration form with MySQL, jQuery. Sometimes you may need to capture lots of user details during registration process and as a result a user gets a long form on web page. So the best solution is to break the form into smaller logical section and present it into…

Search AutoComplete using Codeigniter jQuery

Introduction Here in Codeigniter jQuery AutoComplete example we will see how to do search AutoComplete using Codeigniter jQuery.  Autocomplete allows you to easily create autocomplete and auto-suggest boxes for text input fields. When you start a search on Google or other search engines, you can find the information you are looking for using search predictions. Search predictions are possible search…

GEO Location with HTML5 and jQuery

This tutorial shows you how to display the Geographic location or Geo location of a user or device on a Google map, using your browser’s HTML5 Geolocation feature along with the Google Maps JavaScript API. In this example I am going to use Google’s map JavaScript API. If Geolocation is supported in the browser then only it is going to…

Multi-Step Registration Form Using Codeigniter, MySQL, jQuery

Table of Contents Introduction Prerequisites Project Directory MySQL Table Configuring Autoload Configuring Database Model Class Controller Class View File Configuring Route Testing Multi Step Form Source Code Introduction Here you will see example on multi-step registration form using Codeigniter 3, MySQL, jQuery. Here I will insert data into database using multi-step registration step. Sometimes you may need to capture lots…