praticamente google chrome ha problemi con i link, ma non con le input text trasformate in link..posto il codice per farvi capire il problema:
codice:
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
<title>Accesskey bug</title>
<style type="text/css">
input.buttonlink {
border: 0px;
background-color: Transparent;
color: Blue;
margin: 0px;
padding: 0px;
cursor: pointer;
cursor: hand;
text-align: left;
position: relative;
width: auto;
}
#StyleNormal {
border: 0px;
background-color: Transparent;
color: Blue;
margin: 0px;
padding: 0px;
cursor: pointer;
cursor: hand;
text-align: left;
position: relative;
width: auto;
}
</style>
</head>
<body>
<form id="form" method="post" action=".">
Press alt+g to activate the link button below and go to google.com
<input type="submit" name="btnGoogle" onclick="document.location = 'http://www.google.com'; return false;" accesskey="1" value="Go to Google" class="buttonlink" />
</p>
<input name="text" type="text" value="Press alt+t to focus this field and then you can change the text." accesskey="2" style="width:700px;" />
</p>
Normale
</form>
</body>
</html>
quindi, qualcuno di voi sā se si puō ovviare in qualche modo?
grazie