Skip to main content

Autocomplete in Java Script

Follow the below instruction to implement autocomplete feature using js.

Put the : AutoComplete.js file as per your required folder
Similarly the AutoComplete.css file .
Write your client file . in that call to the AutoComplete_Create method of AutoComplete.js file.

Pass there the id of your text box/text area and the data as an array.
Please follw the attachment carefully to success your integration.

For more details refer the site ; http://www.phpguru.org/static/AutoComplete.htm

Client :

Comments

Popular posts from this blog

Sorting an List in Java

// Create a list String[] strArray = new String[] {"z", "a", "C"}; List list = Arrays.asList(strArray); // Sort Collections.sort(list); // C, a, z // Case-insensitive sort Collections.sort(list, String.CASE_INSENSITIVE_ORDER); // a, C, z // Reverse-order sort Collections.sort(list, Collections.reverseOrder()); // z, a, C // Case-insensitive reverse-order sort Collections.sort(list, String.CASE_INSENSITIVE_ORDER); Collections.reverse(list); // z, C, a

Hibernate

Best sites which are very much useful for assist in Hibernate related problems * Hibernate main site * Hibernate Tutorial * Hibernate Forum * Hibernate Wikipedia * Popular Hibernate Books * Hibernate Materials * Relational Persistence for Idiomatic Java