Side navigation
#13409 closed bug (invalid)
Opened February 07, 2013 03:18PM UTC
Closed February 22, 2013 09:00AM UTC
Animate worked fine in IE, now has issues.
Reported by: | kevin.melfi@themcsgroup.com | Owned by: | kevin.melfi@themcsgroup.com |
---|---|---|---|
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 );
});
Attachments (0)
Change History (3)
Changed February 07, 2013 03:24PM UTC by comment:1
owner: | → kevin.melfi@themcsgroup.com |
---|---|
status: | new → pending |
Changed February 07, 2013 03:50PM UTC by comment:2
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!
Changed February 22, 2013 09:00AM UTC by comment:3
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.