Instead of using a button to submit my forms i using the following markup
<a id="logmein" class="my_button">LOGIN</a>
Which sits either just outside the form or sometimes inside the form and the following jquery
$("#logmein").click(function(e) {
e.preventDefault();
$("#login").submit();
return false;
});
I have been wondering why this wont work in IE. After some investigating i have discovered that to cut a long story short it wont work in IE, but actaully finding a SIMPLE solution is prooving a lot harder. I have just under 93 million billion forms on my site and I dont fancy re-writing testing them all with some annoying MS friendly code to do something like this
jquery's form submit not working in IE
Is there are more elegant simplier way to get these dam forms to submit .... or shall i just re-direct all ie users to a big 300 spartans hole on the internet
thanks for listening....