In this tutorial, we will discuss about how to implement auto complete using jQuery plug in. In this example , a text box is given , where you have to enter any Indian state . When you enter first letter of any state it will automatically show you the list of Indian states starts with “a” letter . The plug in used for this is “jquery.autocomplete.js” .
You May Also Like
How to take a screenshot of the current screen of web page and save it as a png image through phpHow to take a screenshot of the current screen of web page and save it as a png image through php
// an example html page<!DOCTYPE html><html><head> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> <script type="text/javascript" src="./javascripts/html2canvas.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#screenshot').on('click', function(e){ e.preventDefault(); html2canvas($('body'), { ...
PHP Mail Injection Protection and E-Mail ValidationPHP Mail Injection Protection and E-Mail Validation
Introduction There’s a lot of advice available on the subject of protecting a PHP based contact form from injection attacks, ...
how to save div content as image using jqueryhow to save div content as image using jquery
html2canvas This script allows you to take “screenshots” of webpages or parts of it, directly on the users browser. The ...