floyd, la risposta che hai dato è quella che avrei dato pure io... però ho fatto delle prove e non riesco a vedere nessuna proprietà dell'input type="image"
codice:
<html>
<head>
<script language="javascript">
function test(){
el = document.NomeForm.NomeImmagine
str = ''
for(x in el){
str+='-'+x+'='+eval('el.'+x)+'\n'
}
alert('NomeImmagine\n\n'+str)
el = document.NomeForm.NomeText
str = ''
for(x in el){
str+='-'+x+'='+eval('el.'+x)+'\n'
}
alert('NomeText\n\n'+str)
}
</script>
</head>
<body onload="test()">
<form name="NomeForm" action="request01.asp">
<input type="text" name="NomeText" value="prova">
<input type="image" name="NomeImmagine" value="submit" src="../img/binladen.jpg" onmouseover="this.src='../img/imgarticolo1001.jpg'" onmouseout="this.src='../img/binladen.jpg'">
</form>
</body>
</html>
io ho IE6 con win xp profesional
non capisco?
:master: