I hophing someone can tell me why the following HTML code will not
work on pIE. Of course if work on the desktop IE, but I cannot figure
out how to get the same results from pIE.
Thanks,
Jason
<html>
<head>
<title>Test</title>
<script language="jscript">
function displayPage(page)
{ if(page=="onload")
{ main.innerHTML="<a href=\"#\"
onClick=\"displayPage('test');\">Click Me</a>"; }
if (page=="test")
{ alert("Hello world");
}
}
</script>
</head>
<body onLoad="displayPage('onload');">
<span id="main"></span>
</body>
</html>