Search and Top Navigation
#3627 closed bug (fixed)
Opened November 26, 2008 08:43PM UTC
Closed January 19, 2009 11:17PM UTC
Last modified July 06, 2016 05:11PM UTC
ajax tabs fail in internet explorer when url has a fragment
Reported by: | mtk | Owned by: | klaus.hartl |
---|---|---|---|
Priority: | major | Milestone: | 1.7 |
Component: | ui.tabs | Version: | 1.6rc2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<html>
<head>
<script type="text/javascript" src="jquery-1.2.6.min.js"></script>
<link rel="stylesheet" href="flora.all.css" type="text/css" media="screen">
<script type="text/javascript" src="jquery.ui.all.packed.js"></script>
<script>
$(document).ready(function(){
debugger;
var obj=$("#example > ul");
obj.tabs({ fxAutoHeight: true });
});
</script>
</head>
<body>
<div id="example" class="flora">
<ul>
<li><a title="status1" href="status.htm" ><span>Status</span></a></li>
<li><a title="status2" href="status.htm" ><span>Two</span></a></li>
<li><a title="setup1" href="setup.htm" ><span>Setup</span></a></li>
</ul>
</div>
</body>
</html>
if I try to use url: index.htm#setup1 the ajax url is not loaded. It works perfectly with firefox.. but it fails in IE7
Attachments (0)
Change History (6)
Changed November 30, 2008 01:43PM UTC by comment:1
component: | ui.core → ui.tabs |
---|
Changed January 02, 2009 04:48AM UTC by comment:2
milestone: | TBD → 1.6 |
---|---|
priority: | minor → major |
Changed January 19, 2009 09:11PM UTC by comment:3
owner: | → klaus.hartl |
---|---|
status: | new → assigned |
Changed January 19, 2009 11:10PM UTC by comment:4
fails in Firefox as well
Changed January 19, 2009 11:17PM UTC by comment:5
resolution: | → fixed |
---|---|
status: | assigned → closed |
r1692
Changed July 06, 2016 05:11PM UTC by comment:6
In [changeset:"9d807ba1095de773bc78fda077fcc2a0bfc25eac" 9d807ba1]:
#!CommitTicketReference repository="" revision="9d807ba1095de773bc78fda077fcc2a0bfc25eac" Tabs: Remove test for Ajax URLs containing hashes This hasn't been a problem for a long time and jQuery no longer removes the hash in 3.0.0, so the test started to fail even though the actual code is working just fine. Ref #3627 Ref jquery/jquery#1732