Get Content of Script

  • Thread starter Thread starter Billy Jacobs
  • Start date Start date
B

Billy Jacobs

I have the following script tag embedded in a table cell
on a web page like so:

<TD>
<DIV>
<SCRIPT src='http://voap.weather.com/weather/oap/70809?
template=GENXV&par=1003024456&unit=0&key=a2db6fe4374b37a42b
e4e0b7349149bf'></SCRIPT>
</DIV>
<TD>

If I place thr url above directly into a browser it
returns the html that will ultimately be placed inside of
the table cell.

QUESTION:
Is there a way that I can get the result of the script and
then place the result of that in the table cell?

Why you ask? Because there exists a piece of garbage Web
Browser named Netscape 4.7 which can't handle the script
properly. Instead of placing the result in the table cell,
it places it at the bottom of the html page.

If instead I place the results of the script in the table
cell it works correctly.

TIA

Billy Jacobs
 
Hi Billy,

Thank you for using Microsoft MSDN managed newsgroup. I appologize that I
am not quite sure what you mean exactly. Do you mean that the <SCRIPT
src=...> code is able to place the result in the table cell in IE, while it
does not work in Netscapte?

I look forward to your reply.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.
 
Yes. The script returns like this in netscape with the
result of the script at the end of the page instead of
inside of the table cell.

<table>
<tr>
<td><Script src="scripts.com"></td>
</tr>
</table>
</body>
</html>
<table>...Result of script above...</table>

And I would like to know if it is possible to get the
result of the script programatically and place that result
inside of the table cell (e.g <td> Result of Script </td>

Thanks
 
Hello Billy,

Thanks for your prompt response. Based on my experience, I believe it's
very difficult to achieve your requirement. Since it works properly in IE,
I recommend you contact Netscape support to check if they have a good
solution for Netscape. You can acess Netscape Technial Support at
http://wp.netscape.com/support/books/netcenter/044000168.htm.

Please feel free to let me know if you have any problems or concerns.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! ¨C www.microsoft.com/security
This posting is provided ¡°as is¡± with no warranties and confers no rights.
 
Back
Top