Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Show More and Less content using javascript

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1.48k
    Comment on it

    Whenever we want to hide/show a particular content on our web page, we use show and hide functionality of javascript. 

    1. HTML code:
    2.  
    3. <div>
    4. <p>
    5. This is my Blog
    6. </p>
    7. <p id="content"> <!-- This is where I want to add my description --></p>
    8. </div>
    9.  
    10.  
    11. <a id="Button" onclick="togglecontent();" href="javascript:void(0);">See More</a>
    12.  
    13.  
    14. jQuery code:
    15.  
    16. var status = "less";
    17.  
    18. function togglecontent()
    19. {
    20. var i="Here is the content which i want to show to the user";
    21. if (status == "less") {
    22. document.getElementById("content").innerHTML=i;
    23. document.getElementById("Button").innerText = "See Less";
    24. status = "more";
    25. } else if (status == "more") {
    26. document.getElementById("content").innerHTML = "";
    27. document.getElementById("Button").innerText = "See More";
    28. status = "less"
    29. }
    30. }
    31.  
    32.  

     

    Output:

    This is My Blog

    See More

    Now, On clicking the above 'See More' link, it will show the remaining content of the page in a following manner:

    This is My Blog

    Here is the content which i want to show to the user

     

 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: