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

  • SEARCH
  • Home
  • 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 1032137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:02:11+00:00 2026-05-16T14:02:11+00:00

I have a jQuery script below that clears the value of an input on

  • 0

I have a jQuery script below that clears the value of an input on focus and puts it back on blur if the input remains empty. It works great, but here’s the problem:

Let’s say I have 3 input fields on the same page. I click on the first one with the value “Name”, defaultValue variable becomes “Name” and the field clears. If I click out, the value goes back to “Name”. Now if I click on the second field without refreshing the page, it clears just fine, but when I click outside, instead of getting the value “Initials”, it gets the value of the first field.

So how can I get the defaultValue variable to update itself every time I click on a field?

var adaugaInput = $('form#adauga input:text');

adaugaInput.focus(function() {
    var defaultValue = $(this).val();
    if($(this).attr("value") == defaultValue) $(this).attr("value", "");
    adaugaInput.blur(function() {
        if($(this).attr("value") == "") $(this).attr("value", defaultValue);
    });
});
  • 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-16T14:02:12+00:00Added an answer on May 16, 2026 at 2:02 pm

    The explanation for why your code works the way it does is kind-of complicated. For every input field, you’re establishing (and re-establishing, on every “focus” event!) handlers for “blur” events on all the inputs. It’s confusing and hard to think about, so I’ll just sum it up and say “don’t do it that way.”

    adaugaInput.focus(function() {
      var input = $(this);
      if (!input.data('default')) input.data('default', input.val());
      if (input.val() === input.data('default'))
        input.val('');
    });
    
    adaugaInput.blur(function() {
      var input = $(this);
      if (input.val() === '') input.val(input.data('default'));
    });
    

    Note that I use “.val()” to get/set the “value” attribute of the input fields. Also, the “blur” handler is set up outside the “focus” handler. This code uses the jQuery “.data()” mechanism to keep the per-element default value. Not tested but it’s probably pretty close.

    With a mechanism like this, it’s sometimes nice to re-style the input so that (for example) the default value shows up with a lighter font color. To do that, you’d remove and add a class to the input field, and affect the style with CSS. (The inputs would have to start off with the class; or I suppose you could apply the class on focus.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have this jquery script that changes the color of the background instantly by
How have you guys handled working with jQuery includes <script type=text/javascript src=jquery.js></script> in Asp.Net
I have some jQuery/JavaScript code that I want to run only when there is
I have a jQuery datepicker that I want to restrict non work days -
I have some jQuery code. I have called an Ajax function file, file.php, that
I have this jQuery code that queries an API on a keyup event (via
I have a pretty basic jquery script which uses an h2 as a trigger
I have the below html that is supposed to create a fly out Menu.
I have this java code: <script src=http://www.google.com/jsapi></script> <script type=text/javascript> google.load(jquery, 1.2.6); $(a#more).click(function() { $(#info_box).show(blind,
Say I have jquery code like this: html += '<div class=index>' + item.index +

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.