PHP Classes

File: example/autocomplete.html

Recommend this page to a friend!
  Classes of sunish   RSPA   example/autocomplete.html   Download  
File: example/autocomplete.html
Role: Auxiliary data
Content type: text/plain
Description: autocomplete.html
Class: RSPA
Process browser events on the server using AJAX
Author: By
Last change: Changes for PHP 4
Date: 17 years ago
Size: 1,093 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US"> <!-- * Created on Feb 25, 2006 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates --> <style> div.auto_complete ul { border: 1px solid #888; margin: 0; padding: 0; width: 100%; list-style-type: none;} div.auto_complete ul li { margin: 0; padding: 3px;}div.auto_complete ul li.selected { background-color: #ffb; }div.auto_complete ul strong.highlight { color: #800; margin: 0; padding: 0;} </style> <head> <title> </title> <script language="JavaScript" type="text/javascript" src="../rspa.js"></script> </head> <body> Start typing to see autocomplete<br> <input name="autocomplete1" type="text" id="autocomplete1" > <script language="JavaScript" type="text/javascript"> new RSPA.Autocompleter("autocomplete1","MyClass.autoComplete",{controller: "../framework/Controller.php"}); </script> </body> </html>