[jQuery] Input Type of Submit Event not working in IE

[jQuery] Input Type of Submit Event not working in IE


I am trying to add a click event to all form input's that are type of
submit. The following works great in Opera and FF but does not work in
IE. I have tried numerous various without success.
$('input[@type="submit"]').click(function ()
{
//do stuff
});
I have a very similar type of implementation which catches links that
go to external websites and it works great:
$('a[@rel*="external"]').click(function()
{
//do stuff
});
Why would one work and the other not?