Skip to main content

Bug Tracker

Side navigation

Ticket #5051: animBug.html


File animBug.html, 1.0 KB (added by tr1x, August 14, 2009 01:38PM UTC)

jQuery.animate() bug on IE6/7/8

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>
  $(document).ready(function(){
    
    $("#right").click(function(){
      $(".block").animate({"left": "+=5em"}, "slow", null, function(){
	  
	  $("#text").html($(".block").css("left"));
	  });
    });

    $("#left").click(function(){
      $(".block").animate({"left": "-=5em"}, "slow", null, function(){
	  
	  $("#text").html($(".block").css("left"));
	  });
    });

  });
  </script>
  <style>
  div.block { 
    position:absolute; 
    background-color:#abc; 
    left:10em;
    width:600px; 
    height:90px;
    margin:5px; 
  }
  </style>
</head>
<body>
<div id="text">&nbsp</div>
  <button id="left"></button> <button id="right"></button>
<div style="position:absolute; left: 30em;">
<div class="block"></div>
</div>

</body>
</html>

Download in other formats:

Original Format