Side navigation
#4676 closed bug (worksforme)
Opened May 20, 2009 10:08AM UTC
Closed October 29, 2010 02:35AM UTC
fadeTo, fadeIn and fadeOut does not fork correcty in FF3.0 and Chrome 2
| Reported by: | dziastinux | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | effects | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
Tested on Firefox 3.0.10, Chrome 2.0.174.0 and there should be more.
IE8, IE8 (IE7 mode) works fine.
Works fine with jQuery 1.3.1
How to repeat:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src="/js/jquery-1.3.2.min.js" type="text/javascript"> </script>
<title>FadeTo bug demo</title>
<style type="text/css">
#demo1,
#demo2,
#demo3{
overflow: hidden;
width: 50px;
height: 50px;
position: absolute;
}
#demo1{
background: red;
top: 15px;
left: 15px;
}
#demo2{
background: blue;
top: 15px;
left: 75px;
display:none;
}
#demo3{
background: green;
top: 15px;
left: 135px;
}
p {
position: absolute;
top: 75px;
cursor: pointer;
}
</style>
</head>
<body>
<div id='demo1'></div>
<div id='demo2'></div>
<div id='demo3'></div>
<P>Click here to fade in..</P>
<script type="text/javascript">
$(function(){
$('#demo1').click(function(){
$(this).fadeTo("normal", 0.33);
});
$('p').click(function(){
$("#demo2").fadeIn("normal");
});
$('#demo3').click(function(){
$(this).fadeOut("normal");
});
});
</script>
</body>
</html>
Attachments (0)
Change History (3)
Changed October 27, 2010 11:11PM UTC by comment:1
| resolution: | → worksforme |
|---|---|
| status: | new → closed |
Changed October 29, 2010 02:30AM UTC by comment:2
| milestone: | 1.4 |
|---|---|
| resolution: | worksforme |
| status: | closed → reopened |
Changed October 29, 2010 02:35AM UTC by comment:3
| resolution: | → worksforme |
|---|---|
| status: | reopened → closed |
Issue no longer exists
http://jsfiddle.net/rwaldron/GPufL/1/