Hi All,
I need to load different
applets based on the chosen hyperlink. I do not have problem in executing this code in Netscape but IE reports problem.
This is the applet I try to create
var app = document.createElement("applet");
app.name="myApp";
app.id="myApp";
app.code="hello.class";
app.archive="hello.jar"
app.width=860;
app.height=600;
var param = document.createElement("param");
param.name = "Nam";
param.value= "Smiley";
app.appendChild(param);
main.appendChild(app)
When I try to appecd Param as Child it reports error.
Expecting a solution for this problem
Thx
Anu