Tag : Auto completion with example

 jQuery UI Auto completion with example <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title></title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/jquery-ui.css" type="text/css" media="all" /> <style type="text/css"> li.ui-menu-item { font-size: 25px; font-family: arial; } </style> </head> <body> <h3> Enter theEmployee name: </h3> <input type="text" id="book" /> <script type="text/javascript"> // array of ..

Read more