Hi, Rosaltof, This is an expected behaviour, and it's not a jQuery problem neither a ThickBox one. The point is, to get all JavaScript behaviour working with the DOM Document, the page has to be fully loaded, or else you can find yourself manipulating elements that aren't even loaded yet. So, the convention used for these kinds of script is to put them to work after the page is loaded, so if the user clicks the link too soon that's a collateral effect. You have some ways to avoid it, if you want, like putting a "Loading.." message at the top, or hiding elements and showing them only after the full page load, pick the one you like.
Diogo On Jun 1, 3:21 am, Rosaltof <[email protected]> wrote: > Hi, > > I am having a problem with Thickbox in IE7. It works perfectly in all > other browsers. > > I am using Thickbox to show popup modal ajax forms in a table that > lists about 100 prices. > > When the page loads, there is a slight delay from when the page shows > to when the thickbox activates on the links. > > If the user clicks the link too soon, they just go to the href and not > the thickbox. > > Is there something in IE7 that causes delayed load times or anyway i > can surpress/buffer the page load? > > My HTML ishttp://pastie.org/496291 > > Many thanks > > Ed --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
