You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on a legacy system which has many iframe using top frame's jQuery object. In a iframe page, the plot tooltip plugin is called, but tooltip doesn't show up because of follows.
$tip.appendTo('body').hide().css({position: 'absolute'});
'body' always means top frame's body instead of current iframe's body, so I have figured it out by this change
I am working on a legacy system which has many iframe using top frame's jQuery object. In a iframe page, the plot tooltip plugin is called, but tooltip doesn't show up because of follows.
$tip.appendTo('body').hide().css({position: 'absolute'});
'body' always means top frame's body instead of current iframe's body, so I have figured it out by this change
$tip.appendTo($('body')).hide().css({position: 'absolute'});
The text was updated successfully, but these errors were encountered: