I added autocomplete functionality to a textbox in my application -
$( "#cplPageContent_ctlInputSrch_txtSearch" ).autocomplete({
source: aAvailableTags
});
aAvailableTags is a comma delimited list.
I included - http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js and http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js.
Every time I type something into this text box, I get a JScript runtime error - 'PAGE UP' is null or not an object. -or- 'PAGE DOWN' is null or not an object.
There is a series of about 6-8 errors. What would cause those errors?