From: George P. <geo...@ve...> - 2003-08-08 21:04:34
|
The following works OK in IE5.5 and most other browsers except of course for NS4, and not in NS7. I have a SPAN element located inside an in-line layer. Something like: <div id="lyrFooter"> <table bgcolor="#ffffff" width="750" border="0" class="xfooter"> <tr> <td class="xfooter">This page last updated:<br><span class="xfooter" id="pgDate">unknown date</span></td></tr></table></div> (There is more in the actual page, but this shows you the part I am having trouble with.) In a function triggered by an on-change event in a loadpanel layer, I have the following code to update the SPAN element with an actual date from a string variable. pgDate.innerHTML = pgLastUpdate; As I said, this works OK except for NS4 and NS7. I know that it has to be coded different in NS, but I can not figure out the specific code to make it work. I even tried changing the SPAN element to a child layer, but that brought out other issues related to the NS4 CSS bug. TIA, George |