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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:44:33+00:00 2026-05-23T03:44:33+00:00

I’m a total beginner to JavaScript, jQuery, and everything else, so when I saw

  • 0

I’m a total beginner to JavaScript, jQuery, and everything else, so when I saw that HTML5 supports placeholder I was satisfied. That is, until I wanted to enhance its behavior. What I’m trying to do is take what I learned in this post (particularly the corresponding jsFiddle) but modifying it so that:

  • When focusing on the input field, the cursor automatically goes to the beginning of the placeholder in a way that you don’t see it move.
  • The placeholder disappears when I start typing (not after an amount of time) in my input field (which it does but then reappears if I delete what I typed in my input field.

I’ve seen sleek implementations that do exactly what I’m looking to do (notably from the homepages of Tubmlr and Square, and the “Join” page of Foursquare) and am hoping to find out how to do it myself.

The code from the aforementioned jsFiddle that I want to modify/enhance:

$('.placeholder').each(function(){
    $(this).data('placeholder', $(this).attr('data-title'));
    $(this).val($(this).attr('data-title'));
});

$('.placeholder').live('keydown', function(){
    if ($(this).val() == $(this).data('placeholder')) {
        $(this).val('');         
    }
});

$('.placeholder').live('blur', function(){
    if ($(this).val().trim() == '') {
        $(this).val($(this).data('placeholder'));
    }
});

Can anyone help explain this to me?

  • 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-23T03:44:34+00:00Added an answer on May 23, 2026 at 3:44 am
    <style>
    form div { 
     position:relative; 
    }
    div label { 
      position:absolute;
      top:0;
      left:0;
      color:#666;
    }
    div input {
      background: transparent;
    }
    </style>
    ...
    <script>
    $(document).ready(function() {
      $('input').keyup(function() {
        if ($(this).val().length) {
          $('label[for='+$(this).attr('name')+']').fadeOut();
        } else {
          $('label[for='+$(this).attr('name')+']').fadeIn();
        }
      });
    });
    </script>
    ...
    <form>
    <div>
    <label for="name">Name</label>
    <input id="name" name="name" />
    </div>
    </form>
    

    http://jsfiddle.net/Pbn5K/4/

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

Sidebar

Related Questions

I am reading a book about Javascript and jQuery and using one of the
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I used javascript for loading a picture on my website depending on which small
I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported

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.