Jump to content

Recommended Posts

Hi everyone,

 

I have been searching around the net but couldnt find an answer to this.

 

How would i validate this form field that uses the value field for onfocus and onblur?

 

Its not empty as it has 'i.e ITA001' in the field. I need something that says, if 'i.e ITA001' show error type of thing

 

<input name="customerRef" type="text" class="fields" id="customerRefField" onfocus="if (value='i.e ITA001') {value=''}" onblur="if (value=='') {value='i.e ITA001'}" value="i.e ITA001" size="25" />

 

thanks for your help everyone

Link to comment
https://forums.phpfreaks.com/topic/137535-solved-form-validation/
Share on other sites

;) was an accident, put it in the php forum first as thought there could be a php solution, was told to put it in the javascript forum, so did. Then this one got moved?

 

Sorry for it looking spammy, still need some help though if you have an solution

 

cheers

;) was an accident, put it in the php forum first as thought there could be a php solution, was told to put it in the javascript forum, so did. Then this one got moved?

 

It's OK.  People probably told you to move it when they should have reported it for moderators to move.  Anyway, MrAdam's solution didn't work?

 

I've posted a solution in the other topic that got moved!

 

A

so far i have this

 

<script type="text/javascript">
<!--
function defaultValSwitch(obj, default, e) {
    var val;
    if (e == 'onfocus') {
        val = (obj.value == default) ? '' : obj.value;
    } else {
        val = (obj.value == '') ? default : obj.value;
    }
    obj.value = val;
    return;
}

//-->
</script>

 

<input name="customerRef" type="text" class="fields" id="customerRefField" onfocus="defaultValSwitch(this, 'i.e ITA001', 'onfocus');" onblur="defaultValSwitch(this, 'i.e ITA001', 'onblur');" value="i.e ITA001" size="25" />

 

but its throwing up: error: expected identifier?

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.