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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:26:46+00:00 2026-05-25T19:26:46+00:00

I always use this snippet in my work: <input type=text onblur=if (this.value==”) { this.value=’your

  • 0

I always use this snippet in my work:

<input type="text" onblur="if (this.value=='') { this.value='your email'; }" onfocus="if (this.value == 'your email') { this.value=''; }" value="your email" /> 

Basically it will show a text box with “your email” as the value, when the clicks the text input box – the value becomes blank.. thus they type their email.. if they don’t type an email it will reset back to the “your email”.

I want to do this or similar with textarea and convert it to jQuery (also the above code in jQuery)?

<textarea name="msg">Message:</textarea><br />
  • 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-25T19:26:46+00:00Added an answer on May 25, 2026 at 7:26 pm

    This ought to do the trick:

    Will work for both inputs and textareas — Whatever default you set for each will persist. Use as is.

    See Fiddle here : http://jsfiddle.net/leifparker/DvqYU/2/

    (This pulls and stores the default value in a data attribute)

    HTML

    <textarea>I love bananas ..</textarea>
    <textarea>How about you?</textarea>
    <input type="text" value="Time for a bath ..">
    <input type="text" value=".. because I smell">
    

    JS

    $('textarea, input[type=text]')
        .each(function(){ 
            $(this).data('defaultText', $(this).val());
        })
        .focus(function(){
            if ($(this).val()==$(this).data('defaultText')) $(this).val('');
        })
        .blur(function(){
            if ($(this).val()=='') $(this).val($(this).data('defaultText'));
        });
    

    EDIT:

    An alternative brought up by ANeves, and which makes use of the HTML5 placeholder attribute is below. If you don’t care about old browsers, you can use the placeholder HTML on its own (and it works natively, with results similar to the JS above), or otherwise, as below, you’ll need to add a JS fallback.

    Fiddle here : http://jsfiddle.net/leifparker/DvqYU/14/

    HTML

    <textarea placeholder="A few words about yourself"></textarea>
    <textarea placeholder=".. and a few more about your mangy cat."></textarea>
    <input type="text" placeholder="Your Awesome City">
    <input type="email" placeholder="rickastin@youjustgot.com">
    

    JS

    function hasPlaceholderSupport() {
      var input = document.createElement('input');
      return ('placeholder' in input);
    }
    
    if (!hasPlaceholderSupport()){
        $('textarea, input[type=text], input[type=email]')
            .each(function(){
                if ($(this).val()=='') $(this).val($(this).attr('placeholder'));
            })
            .focus(function(){
                if ($(this).val()==$(this).attr('placeholder')) $(this).val('');
            })
            .blur(function(){
                if ($(this).val()=='') $(this).val($(this).attr('placeholder'));
            });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this is a question that when programming I always wonder: What to use when
My ASP.NET always starts like this with the internal server: http://localhost:50793/Website/ I use FckEditor
I've always wondered this, and still haven't found the answer. Whenever we use cout
when ever i use window.location.href=//some url it always open a new window, this only
I always use unix timestamps for everything, but am wondering if there is a
I always use If statement (In C#) as (1. Alternative); if (IsSuccessed == true)
Assuming we always use a Sun JVM (say, 1.5+), is it always safe to
Do you always use a second-level cache in Hibernate or do you first try
How do I make my application always use English when displaying win32/.net exceptions messages?
In my test automation practice I always use a gui mapping strategy that reduces

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.