click event not trigerred in IE

Posted by ZX12R on Stack Overflow See other posts from Stack Overflow or by ZX12R
Published on 2010-03-23T08:09:29Z Indexed on 2010/03/23 8:13 UTC
Read the original article Hit count: 375

Filed under:
|
|

I am trying to trigger a click event for a button from jquery. it works very well in FF but IE(all versions) seem to ignore it. this is what i have tried so far..

$('#uxcSubmit').trigger('click');

then tried this..

$('#uxcSubmit').click();

then even tried this to check if it is a problem of jquery..

document.getElementById('uxcSubmit').click();

nothing seems to help IE..

thanks in advance..

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about JavaScript