jQ 2.0.2 Can't enter characters into input type text fields
Hi All,
I'm new to jQuery and I've just converted my site to use jQ 2.02. I also have jQuery.form loading as well.
Here's the problem:
I can no longer type in my input type=text fields anywhere on the site. Here's the code for a test page:
<html>
<head>
</head>
<body>
<?php print($blob)?>
<input type="text" id="testinput" value="Test" />
</body>
</html>
The text box is not disabled or readonly anywhere in my code, but my guess is jQuery must be doing something on the back end to change that, or it is deleting characters after they are typed. The $blob contains no additional javascript and all other scripts function normally.
The idea will be that as a user enters text in the field, a script will iterate through a SELECT box (generated by PHP) and select the first matching result.
FF 21.0: text input cannot be changed or removed (and is not disabled/readonly)
Chrome 27: text input will not accept new characters, but backspace will delete existing chars
IE 10: Same as Chrome.
What am I missing here?