inner.text is not support with netscape. I need something that is. Here is my code in the <head>...
function ShowParams() {
var p = pano.GetPitch();
var y = pano.GetYaw();
var z = pano.GetZoom();
Pitch.innerText = p;
Yaw.innerText = y;
Zoom.innerText = z;
Then down in the HTML I have the following...
<P id=Yaw> </P></font>
<P id=Pitch> </P></font>
<P id=Zoom> </P></font>
So does anyone have anything that would work with NS since inner.text doesn't?
Thanks in advance,
Ed
function ShowParams() {
var p = pano.GetPitch();
var y = pano.GetYaw();
var z = pano.GetZoom();
Pitch.innerText = p;
Yaw.innerText = y;
Zoom.innerText = z;
Then down in the HTML I have the following...
<P id=Yaw> </P></font>
<P id=Pitch> </P></font>
<P id=Zoom> </P></font>
So does anyone have anything that would work with NS since inner.text doesn't?
Thanks in advance,
Ed