Can anyone help to convert this so it works with Mozila browser
Why does this only work with IE? Can you not use classes with Mozilla? Basically all am doing is filling a table with data from a text file. If anyone knows of a better way please tell me.
Thanks
Code:
<html>
<head>
<title>song List</title>
</head>
<body>
<OBJECT id=songs CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
<PARAM NAME="DataURL" VALUE="songs.ini">
<PARAM NAME="UseHeader" VALUE="True">
</OBJECT>
<TABLE datasrc=#songs>
<THEAD style="color: #0000cc;"><TR><TD><b>Song Name</TD><TD><b>Artists</TD></TR></THEAD>
<TBODY>
<TR><TD><B><DIV style="color: #660000;" datafld="Song Name"></DIV></TD>
<TD><B><DIV style="color: #660000;" datafld="Artists"></DIV></TD></TR>
</TBODY>
</TABLE>
</body>
</html>
Re: Can anyone help to convert this so it works with Mozila browser
Quote:
Originally posted by Troy Mac
Code:
<html>
<head>
<title>song List</title>
</head>
<body>
<OBJECT id=songs CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83">
<PARAM NAME="DataURL" VALUE="songs.ini">
<PARAM NAME="UseHeader" VALUE="True">
</OBJECT>
<TABLE datasrc=#songs>
<THEAD style="color: #0000cc;"><TR><TD><b>Song Name</TD><TD><b>Artists</TD></TR></THEAD>
<TBODY>
<TR><TD><B><DIV style="color: #660000;" datafld="Song Name">blah</DIV></TD>
<TD><B><DIV style="color: #660000;" datafld="Artists">blah</DIV></TD></TR>
</TBODY>
</TABLE>
</body>
</html>
I think the question is css / table contents colouring. Works on ie when there is something in the div to see.
Mozilla - no idea, seems to be a brick wall, and I cannot seem to get anything to work right in it.
Good luck, if you get an answer post up so we can see.
Vince