Opened 15 years ago
Closed 13 years ago
#2987 closed bug (invalid)
$ cycle plugin IE7 crash: dxtans.dll !!
Reported by: | pipalia | Owned by: | malsup |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | plugin | Version: | 1.2.6 |
Keywords: | cycle ie crash | Cc: | |
Blocked by: | Blocking: |
Description
I have a portfolio page with multiple slideshows (there are four tabs and each tab displays a different slideshow). All is well in Mozilla, but after a couple of clicks to change the tabs in IE, it chrashes. I have tried placing the code in the body of HTML, but still get the same crash!! Would appreciate some help in this matter!
Here is my jQuery code:
HEAD code:
<SCRIPT type="text/javascript">
$(function() {
$('ul.pics').cycle({
fx: 'fade', pause: 1
});
});
</SCRIPT>
BODY code:
$(function() {
on load show tab1 $('div.gallery').hide(); $('#imgTab1').show();
$.each( [1,2,3,4], function(a, obj) {
$('#imgLink' + obj).click(function() {
$('div.gallery').hide(); $('#imgTab' + obj).show();
});
});
});
Attachments (2)
Change History (5)
Changed 15 years ago by
Changed 15 years ago by
comment:1 Changed 15 years ago by
Owner: | set to malsup |
---|
comment:2 Changed 15 years ago by
comment:3 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
Unable to reproduce. Test page created here:
http://www.malsup.com/jquery/cycle/test/ticket-2987.html
Please provide a link to the page that is failing if possible.