SCRIPT ERROR - PLEASE HELP!!!
IE Reporting null values from the line below, please advise!
function parseXml(xml) {
//$("div.totalprice").text($(xml).find('PriceTotal TotalPrice').text());
jQuery ("div.totalprice").html(xml);
SubmitPlus('PRICE');
};
function SubmitPlus(pType) {
var lSailingFld = document.getElementById(pType + '_PLUS');
var lImgFld = document.getElementById(pType + '_PLUSIMAGE');
if (lSailingFld.style.display == 'none') { 'THIS LINE IS CAUSING THE PROBLEM
lSailingFld.style.display = "";
lImgFld.src = "images/minus.gif";
}
else {
lSailingFld.style.display = "none";
lImgFld.src = "images/plus.gif";
}
}