View Single Post
Old 08-26-2008, 09:35 AM   PM User | #4
tosbourn
Regular Coder

 
Join Date: Aug 2008
Location: Northern Ireland
Posts: 167
Thanks: 12
Thanked 6 Times in 6 Posts
tosbourn is on a distinguished road
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?
tosbourn is offline   Reply With Quote