Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     <title> bo </title>
  4.         <script language = "javascript" type = "text/javascript">
  5.         function isEditabile(){
  6.         if(document.getElementById('idTesto').disabled == true ){
  7.         document.getElementById('idTesto').disabled = false;
  8.         } else {
  9.             document.getElementById('idTesto').disabled = true;
  10.             }
  11.         }  
  12.         </script>
  13.     </head>
  14.     <body>
  15.     <input id = "idTesto" name = "testo" type = "text" value = "testo">
  16.     <input type = "button" value = "Invio" onClick = "isEditabile();">
  17.     </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement