PHP expert |
|
<head>
<script language="javascript">
function knop_change( id , tekst , disable = true )
{
id.disabled = disable;
id.value = tekst;
}
</script>
</head>
<body>
<input type="button" value="Host it!" onClick="knop_change(this , 'Uploading...' , true );" name="knop" />
</body>
<head> <script language="javascript"> function knop_change( id , tekst , disable = true ) { id.disabled = disable; id.value = tekst; } </script> </head> <body> <input type="button" value="Host it!" onClick="knop_change(this , 'Uploading...' , true );" name="knop" /> </body>
normaal zou dit het moeten doen. |