I have the following function that works under netscape 7, but doesn't
work under ie. What changes should be made to make it run under ie?
function ButFunction()
{
var Page;
var s;
var d;
var h, w;
s = document.SrchFo rm.SearchDB.val ue;
d = document.SrchFo rm.DetailDB.val ue;
d = d - 1;
Page = "Table_Page.htm l?" + "sch=" +
document.SrchFo rm.SearchDB.opt ions[s].text + "&" +
"dtl=" + document.SrchFo rm.DetailDB.opt ions[d].text;
var newWindow = open(Page, "Records Selected", "fullscreen=yes ");
}
work under ie. What changes should be made to make it run under ie?
function ButFunction()
{
var Page;
var s;
var d;
var h, w;
s = document.SrchFo rm.SearchDB.val ue;
d = document.SrchFo rm.DetailDB.val ue;
d = d - 1;
Page = "Table_Page.htm l?" + "sch=" +
document.SrchFo rm.SearchDB.opt ions[s].text + "&" +
"dtl=" + document.SrchFo rm.DetailDB.opt ions[d].text;
var newWindow = open(Page, "Records Selected", "fullscreen=yes ");
}
Comment