View your source code and look to see if you are loading the scripts.

You should see something like this is the source. Make sure those the
external scripts are loading.

<script type="text/javascript" src="/scripts/scripts/cfform.js"></script>
<script type="text/javascript" src="/scripts/scripts/mask.js"></script>
<script language="javascript">
<!--
cfform_submit_status["AccountLogin"]=null;
function check_TF_AccountLogin( theForm ){ cfform_isvalid = true;
cfform_error_message = "";
cfform_invalid_fields = new Object();
if ( !tf_element_has_value( theForm['UserName'], "_TEXT" ) ){
tf_on_error( theForm, "UserName", theForm['UserName'].value, "Please
Enter a E-Mail" );
}
if ( !tf_validate_email( theForm['UserName'] ) ){
tf_on_error( theForm, "UserName", theForm['UserName'].value, "Please
Enter a E-Mail" );
}

if ( cfform_isvalid ){
return true;
}else{
alert( cfform_error_message );
return false;
}
}
//-->
</script>
--
/Kevin Pepperman

"They who can give up essential liberty to obtain a little temporary
safety, deserve neither liberty nor safety." - Benjamin Franklin

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331421
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to