I am sure there is a proper term for it but don't know it. how can i make a small note pop up when a user is on each field. Like lets say they go to name field then as soon as they click on the name field on the right side i want a small note to show up giving them a message like make sure you use full name. I want to do this for a couple of fields i have. how can i do this?

link|improve this question

70% accept rate
1  
Give us an example of a site that does what you need. That way we can give you specific code or even decipher how the other do it. – Moin Zaman Jan 27 '11 at 5:37
twitter.com/signup – AAA Jan 27 '11 at 6:00
1  
that's better :) so my example is what you want. you can style the span.note element to have a background image if you want it to look better. – Moin Zaman Jan 27 '11 at 8:17
btw why is your script source from googleapis. thanks – AAA Jan 27 '11 at 8:35
It doesn't have to be. You can use your own hosted version. I use it because its easy to do so with JSBin. But Its a good practice to use Google's hosted CDN version of jQuery for benefits in performance, caching etc. read here for more: stackoverflow.com/questions/2180391/… – Moin Zaman Jan 27 '11 at 8:48
feedback

4 Answers

Are you looking for ToolTips? Checkout these collection from smashing magazine.

link|improve this answer
feedback

I use this plugin for what you are asking. JQuery tooltip

link|improve this answer
feedback

FlowPlayer.org has a good jQuery tooltip plugin that you can use.

Check this for a demo of using it on a form(it suits your requirement)

link|improve this answer
feedback

Here is a simple example: http://jsbin.com/iruyo3

Code pasted here for reference too.

<!doctype html>
<html>
  <head>
    <title></title>
    <style type="text/css">
      html,body,h1,h2,h3,h4,h5,p,ul,li,form,button { margin:0; padding:0 }
      body { font:normal 62.5% tahoma; margin:20px }

      #myForm .note { display:none; }
      #myForm fieldset { border:0 }
      #myForm label { width:100px; float:left; height:25px; line-height:25px; text-align:right; padding-right:10px }


    </style>
  </head>
  <body>

    <form id="myForm">

      <fieldset>
        <label>Name</label>
        <input type="text" name="fullname">
        <span class="note">Enter your full name.</span>
      </fieldset>

      <fieldset>
        <label>Company</label>
        <input type="text" name="fullname">
        <span class="note">Enter your work place.</span>
      </fieldset>      

    </form>

  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
  <script type="text/javascript">
    $(function() {
      $('#myForm input:text').focus(function(){
        $('.note').hide();
        $(this).next().fadeIn();
      });
    });
  </script>
  </body>
</html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.