Has anybody else experienced this? I get tons of JS errors surrounding the jquery markup, such as the following line of code, works in FF but generates an error "Object doesn't support this property or method" in IE.
$("input[type=text]").css("border","1px solid grey");
Chrome doesn't give me the same error, but it locks up when I perform my autocomplete. The autocomplete works perfectly in FF.
This is very strange to me. I don't even know where to begin debugging this!
If anybody cares to see what I'm talking about, I'll provide my url.
$("#med").autocomplete("ajax-getAllMeds.php", { selectFirst: false, autoFill: true, max: 20, minchars: 2, cache: 30 });
edit: I removed the autocomplete functionality. When you click on one of the meds at the top of the page, the text loads fine in FF but not at all in IE and Chrome.