Guest User

Untitled

a guest
Jun 8th, 2010
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset=utf-8 />
  4. <title>JS test</title>
  5.  
  6. </head>
  7. <body>
  8. <input type="text" id="Y" size="20" style="position: absolute; left: 100; top: 100">
  9. <input type="button" value="A1" name="B3" onclick="a1()">
  10. <input type="button" value="A2" name="B3" onclick="a2()">
  11. <input type="button" value="A3" name="B3" onclick="a3()">
  12. <script>
  13. window.fy=document.getElementById('Y');                                                                                
  14. function a1(){
  15.         fy.value=1;
  16. }
  17.                                                                                
  18. function a2(){
  19.         fy.style.left=0;
  20. }
  21.                                                                                
  22. function a3(){
  23.         fy.style.top=0;
  24. }
  25. </script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment