Bug Tracker

Ticket #2920 (new bug)

Opened 6 months ago

Last modified 5 months ago

UI Tabs - problem with IE and AJAX tabs

Reported by: forkie Assigned to: klaus
Type: bug Priority: major
Milestone: 1.3 Component: ui
Version: 1.2.5 Keywords: ajax ui.tabs
Cc: Needs: Review

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

Change History

Changed 6 months ago by forkie

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 6 months ago by flesler

  • keywords changed from ajax tabs to ajax ui.tabs
  • owner set to paul
  • component changed from ajax to ui

Changed 5 months ago by paul

  • owner changed from paul to klaus
Note: See TracTickets for help on using tickets.