auto complete input text box

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ayush
    New Member
    • Jul 2012
    • 1

    auto complete input text box

    i wanted to know about the working of an auto complete in text box so that when i enter some value in a text box the related values are choosen from the database and then displayed as suggestion for the user
  • lyodmichael
    New Member
    • Jul 2012
    • 75

    #2
    do you try to use on key event ? when you put the 3th character on the text box it will search for the same value in the database?

    Comment

    • Rabbit
      Recognized Expert MVP
      • Jan 2007
      • 12517

      #3
      Use the keypress event in javascript to make an AJAX call to your database.

      Comment

      Working...