Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a text input which I validate its value when event "blur" triggers . when the value is not valid , I change the input background color , and when I resolved the error I want the original color and style of the input to be set again to it . but what's happening that I'm losing the original style after resolving the error or getting the error , in general that's happening when changing input's style . I tried to look for the original style to set it again but I couldn't find it in jqueryui styles . need your help :

HTML Code :

<input type='text' name='val1' id='val1'/> 

jQuery Code :

function is_numeric(value)
{
    var pattern= new RegExp(/^[0-9]+$/);
    return pattern.test(value);
}

$(document).ready(function ()
{
 $('#val1').blur(function()
    {
        if(!is_numeric($('#val1').val()))
        {
            $('#val1').css('background-color','#E65050');
        }
        else
        {
            $('#va1').css('background-color','white '); /// here ??
        }
    });
 });
share|improve this question

4 Answers

please use class see the DEMO

CSS

.error {background-color:#E65050}

jQuery

function is_numeric(value)
{
    var pattern= new RegExp(/^[0-9]+$/);
    return pattern.test(value);
}

$(document).ready(function ()
{
 $('#val1').blur(function()
    {
        if(!is_numeric($('#val1').val()))
        {
            $('#val1').addClass('error');
        }
        else
        {
            $('#va1').removeClass("error");
        }
    });
 });
share|improve this answer

instead of

  $('#va1').css('background-color','white '); /// here ??

use

  $('#va1').css('background-color',''); 
share|improve this answer

Why not just store it at document ready:

$(document).ready(function ()
{
   var defColor = $('#val1').css('background-color');

   $('#val1').blur(function()
   {
    ...
    $('#val1').css('background-color', defColor);
share|improve this answer

did you noticed the spelling mistake:

$('#va1').css('background-color','white ');

should be like this

$('#val1').css('background-color','white ');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.