Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

See this: jquery click doesn't work on hyperlink

JQuery's click() doesn't actually click on the link, it just executes all attached event handlers.

share|improve this answer
That should be irrelevant since he's using thickbox to display it. (At least I'm assuming thickbox is like fancybox and lightbox) – Paulpro Mar 2 '12 at 3:31
Correct, thickbox is similar to those. It is a jquery plugin to open lightbox style windows etc. jquery.com/demo/thickbox – Nikita Sherwood Mar 2 '12 at 4:35
I see. Funny, just two days ago I was writing my own version of this exact thing, but I see that it can open URL's as iframes in the overlay by using <a href/>. – Tony R Mar 2 '12 at 16:44

The click event call will not enforce an actual click, but it will call any click handler code that you may have. If you want to have the link "clicked", then do this:

location.href = $('#modelwindow').attr('href');
share|improve this answer
Looks like he's using some server-side technology that I don't recognize. This code will fail for a different reason, though. See my answer. – Tony R Mar 2 '12 at 3:25
You are correct when you are saying that the click() function will not actually click the link, but if he has a click event handler somewhere else in the code, then that event handler will be called. – Greg Franko Mar 2 '12 at 3:29
Hmm, well I was assuming he wanted to follow the href link. If he's triggering another handler then it's a different story. – Tony R Mar 2 '12 at 3:32
The slashes were from a PHP echo statement. They are irrelevant to this issue and I have now edited them out. I also previously edited out the $ifl PHP variable which is not relevant to this. Yes I have tested with it removed as well. – Nikita Sherwood Mar 2 '12 at 4:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.