Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to show the default text on a form textboxes using jquery

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 434
    Comment on it

    Here, in this article when i click on one textbox the corresponding text in this textbox hides, and as soon as i click on another textbox the first textbox text appears.

    The following steps are required to make the above task possible

    Step1: Download the jquery file from http://code.jquery.com/jquery-1.6.3.min.js

    Step 2: Add the following script under the head section

    1. script type="text/javascript">

    2. $(document).ready(function ()

    3. {

    4. $('.tab').focus(function () {
    5. $(this).css('background', '');
    6. });
    7.  
    8. $('.tab').blur(function () {
    9. $(this).css('background', 'White');
    10. });
    11.  
    12. $('.tab').focus(function (e) {
    13. if ($(this).val() == $(this)[0].title) {
    14. $(this).removeClass("defaulttext");
    15. $(this).val("");
    16. }
    17. });
    18.  
    19. $('.tab').blur(function (e) {
    20. if ($(this).val() == "") {
    21. $(this).addClass("defaulttext");
    22. $(this).val($(this)[0].title);
    23. }
    24. });
    25. $('.tab').blur();
    26. });

    Step3: Create a form to check the script is working or not.

    1. 3.1: Create two textboxes and write default text under title tag

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: