Side navigation
Ticket #4008: test_case.html
File test_case.html, 0.4 KB (added by cninja, January 28, 2009 03:05AM UTC)
Test Case
<html>
<style type='text/css'>
div { border : red 0 solid; }
div#in_px { border-left-width : 14px }
</style>
<div id='in_px'>Border in px click to animate</div>
<script type='text/javascript' src="jquery-1.3.1.js"></script>
<script type='text/javascript'>
$("#in_px").click(function(){
$("#in_px").animate({"borderLeftWidth": "350px"}, "slow");
});
</script>
</html>
Download in other formats:
Original Format
File test_case.html, 0.4 KB (added by cninja, January 28, 2009 03:05AM UTC)
Test Case
<html>
<style type='text/css'>
div { border : red 0 solid; }
div#in_px { border-left-width : 14px }
</style>
<div id='in_px'>Border in px click to animate</div>
<script type='text/javascript' src="jquery-1.3.1.js"></script>
<script type='text/javascript'>
$("#in_px").click(function(){
$("#in_px").animate({"borderLeftWidth": "350px"}, "slow");
});
</script>
</html>