Hey rnd me,
Cheers for the welcome, and the help - unfortunately this project needs to be completed way before MS pull their finger out!
I have found two references to .innerHTML in my code
Code:
function applyPerson ( ){ // [l] fill fields with result
num = $("personpicker").options[$("personpicker").selectedIndex].value;
$('selectPID').value = peopleChoice[num].dbid ;
peopleChoice[num].add = unescape(peopleChoice[num].add);
add = peopleChoice[num].add.split("\n");
{
$("hnum").value = add[1];
$("hpcd").value = add[5];
$("hstr").value = add[2];
$("hcou").value = add[3];
$("hcty").value = add[4];
}
$('fname' ).value = peopleChoice[num].fname;
$('sname' ).value = peopleChoice[num].sname;
$('phone' ).value = peopleChoice[num].phone ;
$('age' ).value = unescape(peopleChoice[num].age);
dd_select("gender", peopleChoice[num].gender);
dd_select("pcat", peopleChoice[num].catid );
$("attentionPhrase" ).innerText = "";
$("attentionContents").innerHTML = "";
$("attentionActions" ).innerHTML = "";
$("attention").style.display="none";
Could this be what is throwing it off yeah?