Ok, I’m trying to implement this javascript/ajax autofill control that uses a webservice to get a list of strings matching the users input. I have nearly everything working proper but one part. It seems no matter what way I try things I can never get the current value of the textbox on a keypress or keydown event. If I try to getelementbyid I get the textbox but the value is “” no matter wat the actual current text is. As a quick way around this I declare a global var to hold the text as it gets typed which is bad because when text is pasted or selected and deleted I get no message. The onchanmge event only fires when I hit enter. I know I must be approaching this wrong because I’ve seen this done before and the solution I saw accounted for all this. Anyone have and examples/advice working withthese events and text inputs?