Jump to content

Trying to use Dreamweaver SpryValidation to validate name fields with onblur


Presto-X

Recommended Posts

Hello everyone,

 

I am using Dreamweaver CS3 SpryValidationTextField.js to validate two fields first, and last name, to make sure the user has entered in a value, the problem is that I'm also using the following script:

 

value="First Name" onfocus="if(this.value=='First Name'){this.value=''};" onblur="if(this.value==''){this.value='First Name'};"

 

This works great but the form validation see the First Name and Last Name text as valid, how would I change the attached script to see if the text getting validated is not equal to "First Name" or "Last Name"?

 

This script is also getting used on the page for the validation, not sure if it is of use here or not but here it is:

<script type="text/javascript">
<!--
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur"]});
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur"]});
//-->
</script>

 

[attachment deleted by admin]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.