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 8603639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:22:17+00:00 2026-06-12T02:22:17+00:00

I have multiple text box like this. I want to apply the text on

  • 0

I have multiple text box like this. I want to apply the text on blur and empty when it get focused. I can able to achieve this for single text box. How i can pass the current element id instead of the hard coding the “#name” value in JavaScript function ?

$(document).ready(function(){


    $('#Name').focus(function()
    {
         var $ele = $(this).attr('id');
            $(this).val('');
            $(this).css('color', '#000000');
    });

    $('#Name').blur(function()
    {
           var $ele = $(this).attr('id');
            $(this).val($ele);
            $(this).css('color', '#a9a9a9')
    });
});



<input id="Name" type="text" value="" name="Name">
<input id="Phone" type="text" value="" name="Phone" >
<input id="Email" type="text" value="" name="Email">
  • 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-06-12T02:22:18+00:00Added an answer on June 12, 2026 at 2:22 am

    You can select all input by $('input') and you can put filter text inputs using [type="text"]; You can take benefits of jQuery chaining.

    $(document).ready(function(){   
    
        $('input[type="text"]').focus(function()
        {
             var $ele = $(this).attr('id');
                $(this).val('');
                $(this).css('color', '#000000');
        }).blur(function()
        {
               var $ele = $(this).attr('id');
                $(this).val($ele);
                $(this).css('color', '#a9a9a9')
        });
    });
    

    You can directly set value of input fields in html

    <input id="Name" type="text" value="Name" name="Name">
    

    OR Apply default values on page load as:

    $('input[type="text"]').each(function(){
       var $ele = $(this).attr('id');
                    $(this).val($ele);
                    $(this).css('color', '#a9a9a9')
    
    });
    

    HTML

    <input id="Name" type="text" value="" name="Name">
    <input id="Phone" type="text" value="" name="Phone" >
    <input id="Email" type="text" value="" name="Email">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple readonly textboxes like this <div id=box> <form method=post action=> <input type=text
I have multiple text files with logged data like this: 6/23/09 17:00 0.443 6/23/09
I have a text box that will allow the user to enter multiple authors
I have multiple input textboxes in my page. I want to reset particular text
I have a gui form, where multiple text boxes are present. I want to
Basically, I have a table with multiple editors like this: <table> <tr> <td>@Html.EditorFor(x =>
I have something like this <button onclick=JavascriptFunction();>HTTPPost Button</button> <script type=text/javascript language=javascript> function JavascriptFunction() {
I have done something like this. <html> <head> <script type=text/javascript> <!-- function toggleTB(what){ if(what.checked){document.theForm.theTB.disabled=1}
I have a Form with multiple different controls like ComboBox , TextBox and CheckBox
i have a single textbox named Keywords. User can enter multiple strings for search.

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.