Provavo una certa pagina asp e mi sono accorto che il click su un link non funziona usando IE6. Ne ho fatto una estrazione minimale html ed ho scoperto che il problema del javascript è nella istruzione
display: inline-block;
dello stile.
volevo sapere se c'è modo di ovviare. Ciao
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
.navigator a.btn span
{
cursor: pointer;
background-color: #d3e6ea;
padding-top: 1px;
padding-right: 1px;
padding-bottom: 1px;
padding-left: 1px;
margin-top: 1px;
margin-right: 1px;
margin-bottom: 1px;
margin-left: 1px;
display: inline-block;
text-align: center;
border: 1px #336699 solid;
}
</style>
</head>
<body>
<form runat="server" id="form1">
<div class="navigator">
<table cellpadding="0" cellspacing="0">
<tr>
<td>
<a class="btn" href="javascript:document.getElementById('form1').submit();">
<span>
[img]./immagini/resultset_next.png[/img]
</span>
</a>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>