X Ekseni girilen bir nesnenin ekranda kayması
Bir textbox yardımı ile ekrandaki bir çiçeğin girilen koordinatlara göre hareketini sağlayan uygulama
 
<html>
<head>
<script type="text/javascript">
<!--
function Mesaj(Girilen){
       
 if(Girilen.value.length!=0){
   
   NesneninSolu=document.getElementById('cicegim').style.left;
   document.getElementById('cicegim').style.left=parseInt(NesneninSolu)+parseInt(Girilen.value)+"px";
           
   window.status=document.getElementById('cicegim').style.left;
  }
  else document.getElementById('cicegim').style.display="none";
 }
//-->
</script>
</head>
<body>
<form>
<img src="images.jpg" id="cicegim" width="116" height="109" style="position:absolute; z-index:10; left:50px; top:50px;" />
<input type="text" value="" onblur="Mesaj(this)" onclick="this.style.backgroundColor='#ffffff';" />
</form>
</body>
</html>