Lexiconn
This would go in a widget in the right column where the current one is, but I don’t think I can create a test page with the Lexiconn code in a widget for just that one page. So I’m putting it here…
function CheckMultiple224(frm, name) { for (var i=0; i < frm.length; i++) { fldObj = frm.elements[i]; fldId = fldObj.id; if (fldId) { var fieldnamecheck=fldObj.id.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } } return false; } function CheckForm224(f) { if (f.email.value == "") { alert("Please enter your email address."); f.email.focus(); return false; }
var fname = "CustomFields_310_224"; var fld = document.getElementById(fname); if (fld.value == "") { alert("Please enter a value for field First Name"); fld.focus(); return false; }
return true; };
