I am really struggling with IE8 not recognizing my JQuery Click() function. Chrome and FF works fine. I have searched through several pages of google search for the right answer but have yet to identify a solution. I came across several stackoverflow posts, but no result. Usually the situations are way more complicated than what I am doing.
<a id="modalwindow" class="thickbox" href="iframemodal.html?placeValuesBeforeTB_=savedValues&TB_iframe=true&height=300&width=425&modal=true"></a>
<script language="javascript">
//<!--
$(document).ready(function(){
$('#modalwindow').click();
});
//-->
</script>
Pretty simple yes? I am trying to force a "click" on the link that is using a thickbox plugin to pop up a modal-style window. I also tried using
$('#modalwindow').trigger('click');
But that will not work either. I am getting no javascript errors, and I can do alerts before and after the click() and they function fine. I hope someone can help.