Problem with button

  • Thread starter Thread starter Bettina
  • Start date Start date
B

Bettina

Hi all

I have a problem with IE6 & input-type button. I made a little "fake"
as I have a link tag around a <input type="button" - tag.

looks like this:

<table align="left" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="bugTest.html" class="noDecoration">
<input type="button" name="back" value="Back"></a>
</td>
</tr>
</table>

The reason for doing this is because of style-class (skipt in
example), for translation reasons and to avoid javascript if possible.
It's working without problems on NN7.02 and Opera 7.01 but not on IE6!

Is there a workaround to solve my problem? Any help would be very much
apperciated!

Thank you very much!

Bettina
 
I found a solution myself actually a very creative one ;). Post-it for
all interessted...

<table align="left" cellspacing="0" cellpadding="0" border="0">
<tr>
<td background="images/static/dummyButton80.gif" width="82"
align="center">
<a href="bugTest.html" class="noDecoration">
<div class="dummyButton">Back</div>
</a></td>
</tr>
</table>

works fin in all Browsers without js...

Bye

Bettina
 
Back
Top