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.
$(document).ready(function() {
$("#login_form").bind("submit", function() { processLogin(); return false; })
if ('<?php echo $_GET['email']?>' != '' && '<?php echo $_GET['password']?>' != '' ) {
$('#login_form').submit();
}});