Skip to main content

Bug Tracker

Side navigation

#2920 closed bug (worksforme)

Opened May 22, 2008 08:48AM UTC

Closed January 16, 2009 06:46AM UTC

Last modified March 14, 2012 10:14PM UTC

UI Tabs - problem with IE and AJAX tabs

Reported by: forkie Owned by: klaus
Priority: major Milestone: 1.3
Component: ui Version: 1.2.5
Keywords: ajax ui.tabs Cc:
Blocked by: Blocking:
Description

I currently have the following tabs (in psuedo code)

<div id="my-container">
<ul>
 <li><a href="#fragment-1">This is my first normal tab</a></li>
 <li><a href="#fragment-2">This will load an IFRAME</a></li>
 <li><a href="mywebsitescript.php">Heres my AJAX page</a></li>
</ul>
<div id="fragment-1">
<p>UI Tabs is really slick isn't it</p>
</div>
<div id="fragment-2">
<iframe src="http://www.b.com/some_remote_page.php"></iframe>
</div>
</div> <!-- end of id="my-container" --> 

In Firefox it loads without any problems. In IE it still loads the AJAX page, however it will essentially add it to the end of the document. So basically it looks as though nothing has happened, but I look at the scrollbar on the right and notice that the page is very long. When I scroll down the page, the AJAX-ed <div> has appeared.

What's causing this?

I can give you access to the website if required to reproduce this problem.

Thanks, Forkie.

Attachments (0)
Change History (4)

Changed May 22, 2008 09:28AM UTC by forkie comment:1

Sorry guys, problem fixed change it to:

<div id="my-container">
<ul>
 <li><a href="#fragment-1">This is my first normal tab</a></li>
 <li><a href="#fragment-2">This will load an IFRAME</a></li>
 <li><a title="ajax page" href="mywebsitescript.php">Heres my AJAX page</a></li>
</ul>
<div id="fragment-1">
<p>UI Tabs is really slick isn't it</p>
</div>
<div id="fragment-2">
<iframe src="http://www.b.com/some_remote_page.php"></iframe>
</div>
<div id="ajax_page"></div>
</div> <!-- end of id="my-container" -->

inside your container div.

Changed May 22, 2008 02:04PM UTC by flesler comment:2

component: ajaxui
keywords: ajax tabsajax ui.tabs
owner: → paul

Changed June 19, 2008 10:46AM UTC by paul comment:3

owner: paulklaus

Changed January 16, 2009 06:46AM UTC by klaus comment:4

resolution: → worksforme
status: newclosed