Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7583519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:41:53+00:00 2026-05-30T18:41:53+00:00

I am using the following jquery code to make textbox’s border orange on focus

  • 0

I am using the following jquery code to make textbox’s border orange on focus and gray on blur.
Also while performing the validation if the input for a particular textbox is incorrect the border becomes red and a ‘X’ (which is a label) is displayed.

$(function() {

    $('.textbox').focus(function() {
        $(this).css('border', '1px solid orange');

    });
    $('.textbox').blur(function() {
        $(this).css('border', '1px solid gray');
    });

    // $('.num').mouseover(function() {
    //  $('.num').easyTooltip();
    //  });

    $("label").easyTooltip();
    // $("a").easyTooltip();


    $('.checkdate1').blur(function() {
        var checkdate = $(this).val();
        var error = this.id;
        error = "#lbl" + error.substring(3);
        if (checkdate != "") {
            if (isDate(checkdate)) {
                $(error).css('display', 'none');
                $(this).css('border', '1px solid gray');
            }

            else {
                $(this).focus();
                $(this).css('border', '1px solid red');
                $(error).css('display', 'inline');

                 }

        }
        else {
            $(error).css('display', 'none');
            $(this).css('border', '1px solid gray');
        }
    });
 });

The problem is it works fine in chrome , mozilla ie onfocus orange , onblur gray and onerror red.
I set focus to textbox if input is incorrect and with red border that means if user tries to click on another textbox he wont be able to do that.
In opera , the problem appears ,, if input is incorrect textbox becomes red ,,, and has focus ,,,but if the user clicks on some other textbox ,, its color becomes orange ,,,, with focus still with textbox with wrong input.
Could anyone suggest me where is the problem
Any help is appreciated.
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:41:54+00:00Added an answer on May 30, 2026 at 6:41 pm

    Try this one with the jQuery version 1.7.1. I’ve change some part of your code and added a function to validate the date.

    $(function() {
    
        $('.textbox').on({
            focus : function() {
                $(this).css({border : '10px solid orange'});
            },
    
            blur : function() {
                $(this).css({border : '10px solid gray'});
            }
        });
    
        // $('.num').mouseover(function() {
        //  $('.num').easyTooltip();
        //  });
    
        //$("label").easyTooltip();
        // $("a").easyTooltip();
    
    
        $('.checkdate1').on('blur', function() {
            var self = $(this),
                checkdate = self.val(),
                new_d = new Date(checkdate),
                error = "#lbl" + $(this).attr("id").substring(3);
    
            if (checkdate !== "") {
    
                if ( dt_check(checkdate) ) {
                    $(error).css('display', 'none');
                    self.css('border', '1px solid gray');
                }
    
                else {
                    self.focus().css('border', '1px solid red');
                    $(error).css('display', 'inline');
                }
    
            } else {
                $(error).css('display', 'none');
                self.css('border', '1px solid gray');
            }
        });
     });
    
    function dt_check(input) {
    
        //Date format should be (DD/MM/YYYY)
    
        var valid_regx = /^\d{2}\/\d{2}\/\d{4}$/,
            returnval = false
    
        if ( ! valid_regx.test(input) ) {
            returnval = false;
        } else{
    
            var spl_date = input.split("/"),
                d_day = spl_date[0],
                d_month = spl_date[1],
                d_year = spl_date[2],
                d_obj = new Date(d_year, d_month-1, d_day);
    
                if ((d_obj.getDate()!=d_day)||(d_obj.getMonth()+1!=d_month)||(d_obj.getFullYear()!=d_year)) {
                    returnval = false;
                }
                else { returnval = true; }
            }
        return returnval
    }
    

    You can disable the other field/btns to avoid entering a wrong value like this:

    $('.checkdate1').on('blur', function() {
            var self = $(this),
                checkdate = self.val(),
                new_d = new Date(checkdate),
                other_input = $('.textbox'),
                error = "#lbl" + $(this).attr("id").substring(3);
    
            if (checkdate !== "") {
    
                if ( dt_check(checkdate) ) {
                    $(error).css('display', 'none');
                    self.css('border', '1px solid gray');
                    other_input.attr('disabled', false);
                }
    
                else {
                    self.focus().css('border', '1px solid red');
                    $(error).css('display', 'inline');
                    other_input.attr('disabled', true);
                }
    
            } else {
                $(error).css('display', 'none');
                self.css('border', '1px solid gray');
                other_input.attr('disabled', false);
            }
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the following jquery code: $(#top ul li.corner).mouseover(function(){ $(span.left-corner).addClass(left-corner-hover); $(span.right-corner).addClass(right-corner-hover); $(span.content).addClass(content-hover); }).mouseout(function(){
I am using the following code to show a jQuery UI dialog when the
How to get previous page URL using jQuery? I am using the following code
I have just started using jQuery and although following code gets the job done,
I'm using jQuery with rails and have the following piece of code $('#related').html(<%= render
I have the following snippet of code (I'm using jQuery 1.4.2): $.post('/Ads/GetAdStatsRow/', { 'ad_id':
I am using jQuery and Ajax. My MainFile has the following code: <html> <head>
I'm using the following code to make a div overlay. If the links login
I have the following jQuery Mobile HTML code, the navbar's content is set using
I'm using JQuery 1.3.2 and have the following code - My html is -

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.