When opening our client front end in IE, I get the error "Object Expected" and it points to the following when I debug. I've googled, but nothing straightforward yet, at least not specifics.
$(document).ready(function () {
$("#login_form").bind("submit", function () {
processLogin();
return false;
})
if ('<?php echo $_GET['email ']?>' != '' && '<?php echo $_GET['password ']?>' != '') {
$('#login_form').submit();
}
});
I know there is php in the js, so I attempted to put in a
document.write(<?php echo $_GET['email']?>)
in place of just the straight php, so that its differentiated. Though then it leads to another error based off this:
$("#description").toggle();
This is proof that IE is a pain. This works in Chrome, Safari and FF....
Ideas?