Presto-X Posted January 26, 2010 Share Posted January 26, 2010 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] Quote Link to comment Share on other sites More sharing options...
Presto-X Posted January 26, 2010 Author Share Posted January 26, 2010 I found my awnser (Create a hint for a text field) here: http://labs.adobe.com/technologies/spry/articles/textfield_overview/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.