Ik ben bezig met html code the generen in java. Dat is aardig gelukt en in IE zie ik ook de resultaten. Maar als ik Firefox open dan valt de link in de html weg.
Hier gaat het om:
in IE kan ik elke kolom klikken en die wijst naar de juiste locatie op c:
maar in Firefox werken de href'jes niet. Wat moet ik veranderen om die ook in firefox te laten werken?
Hier gaat het om:
HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <div style="overflow: fixed; width: 700px; height: 200px; padding: 0px; margin: 0px;"> <table border="0" cellspacing="0"> <tr><th width="100px">TD0101</th> <a href="c:\test1.html"><td bgcolor=green width="125px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=blue width="250px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=yellow width="50px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=red width="25px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=green width="50px" height="20px"></td></a> </tr><tr/> </table> <table border="0" cellspacing="0"> <tr><th width="100px">TD0101A</th> <a href="c:\test1.html"><td bgcolor=green width="50px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=blue width="50px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=green width="50px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=blue width="50px" height="20px"></td></a> <a href="c:\test1.html"><td bgcolor=green width="50px" height="20px"></td></a> </tr><tr/> </table> </div> |
in IE kan ik elke kolom klikken en die wijst naar de juiste locatie op c:
maar in Firefox werken de href'jes niet. Wat moet ik veranderen om die ook in firefox te laten werken?