Opened 10 years ago
Closed 10 years ago
#13409 closed bug (invalid)
Animate worked fine in IE, now has issues.
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This was working fine in IE for the past few months and it just stopped working. Now the flash moves away and then comes back covering the image that should be in place. Anyone know why this is messed up?
$("#a, #b, #c, #d, #e, #f").mouseout(function(){
$("#flashCell").stop().animate({
width: "100%",
height: "100%",
opacity: 1.0,
}, 400 );
});
$("#a, #b, #c, #d, #e, #f").mouseenter(function(){
$("#flashCell").stop().animate({
width: "0%",
height: "0%",
opacity: 0.0,
}, 300 );
});
$("#a").mouseenter(function(){
$("#collection").stop().animate({
width: "100%",
height: "100%",
opacity: 1.0,
}, 300 );
});
$("#a").mouseout(function(){
$("#collection").stop().animate({
width: "0px",
height: "0px",
opacity: 0.0,
}, 400 );
});
Change History (3)
comment:1 Changed 10 years ago by
Owner: | set to [email protected]… |
---|---|
Status: | new → pending |
comment:2 Changed 10 years ago by
I'm seeing the issue on IE 9. I'll be able to do that this afternoon and will post it up here. Thank you!
comment:3 Changed 10 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Which version(s) of IE? Can you create a simple test case that just includes jQuery? Just put it on jsfiddle.net or jsbin.com.