View Single Post
Old June 29th, 2010, 07:55 PM   #3 (permalink)
kyle55155
Member
Verified Customer
 
Join Date: May 2010
Posts: 34
Chuck,

Were you able to replicate that error with IE8? I installed RP on my VB 4.04 test site and got the same behavior. Then I tested on my VB 4.03 set site and got the same behavior there as well.

IE8 seems to be ok with :
function checkForm (form) {
if (form.title.value == "") {
alert( "{$rp_phrase['blanktitle']}" );
form.title.focus();
return false;
}


but then has issues with:
if (form.extra1.value == "" ) {
alert( "{$rp_phrase['blankfield']}: {$Globals['extra1name']}" );
form.extra1.focus();
return false;
}

the code for all 6 other than the name looks the same.

Last edited by kyle55155; June 29th, 2010 at 08:49 PM.
kyle55155 is offline   Reply With Quote