Code Of Programm
<html>
<style>
#move{
background:blue;
height:200px;
width:200px;
}
</style>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$('move').animate({left:"100px"},1000);
});
</script>
<body>
<div id="move">
</div>
</body>
</html>
<html>
<style>
#move{
background:blue;
height:200px;
width:200px;
}
</style>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$('move').animate({left:"100px"},1000);
});
</script>
<body>
<div id="move">
</div>
</body>
</html>