Hi, in FF everything works fine, in IE not
any thoughts, i've tinkered with it and can't seem to make IE happy:
var divQ = document.getElementById("div1Question");
// alert below is correct in syntax
alert("<a name=\"#Question" + strWsb.substring(3) + "\"></a>" + _strQuestion)
// below i get an unhandled exception error
divQ.innerHTML = "<a name=\"#Question" + strWsb.substring(3) + "\"></a>" + _strQuestion
//can make it here in FF not in IE
alert('made it here');
///////// Thanks
any thoughts, i've tinkered with it and can't seem to make IE happy:
var divQ = document.getElementById("div1Question");
// alert below is correct in syntax
alert("<a name=\"#Question" + strWsb.substring(3) + "\"></a>" + _strQuestion)
// below i get an unhandled exception error
divQ.innerHTML = "<a name=\"#Question" + strWsb.substring(3) + "\"></a>" + _strQuestion
//can make it here in FF not in IE
alert('made it here');
///////// Thanks