Hello,
I'm trying to access a value from an input form. I know this works without the onkeyup event but with it it says the that document.formname.elementid.value is undefined! Its extremely frustrating. As the user types into the input, I am using AJAX to generate some more options which works but I need to be able to access the input type=text value. Here is my code:
<input type=text id= IDNAME onkeyup=functionname('/somephpfile.php?IDNAMEASVAR=',this.value) />
thanks in advance.