Hi There
I employ the JQuery UI Tabs interface in my new project. I use the
"link tabs" option where the info for each team is in a different page
and loaded separately as there is a lot of SQL queries flying around.
I have an issue with the reload of data within the tabs in IE. in
Firefox everything is fine, but if I change something in IE and return
tot eh tab, the old information still shows. I tried the "reload tab"
function but either failed to employ this correctly, or is not working
but either way, I had no luck thus far.
Please help!
My code looks something like this:
I include JQuery and the UI scripts
In the head..
<script type="text/javascript">
$(document).ready(function(){
var $tabs = $("#staff_tabs > ul").tabs();
$tabs.tabs('select',<?php echo $tab; ?>);
});
</script>
and in the body...
<div id="staff_tabs" class="clear">
<ul>
<li><a href="./staff_tabs/summary.php"
title="Summary">span>Summary</span></a></li>
<li><a href="./staff_tabs/event_log.php" title="Event
Log"><span>Event Log</span></a></li>
<li><a href="./staff_tabs/details.php"
title="General"><span>Details</span></a></li>
</ul>
</div>
I would appreciate any help with this problem.
PS> IE must die...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" 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-ui?hl=en
-~----------~----~----~----~------~----~------~--~---