Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • has event( ) jquery

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 131
    Comment on it

    it helps in reducing set matched of elements to those that have descendant to the matched set of values

     

    1. <!doctype html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="utf-8">
    5. <title>has demo</title>
    6. <style>
    7. .full {
    8. border: 1px solid red;
    9. }
    10. </style>
    11. <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
    12. </head>
    13. <body>
    14. <ul><li>Does the UL contain an LI?</li></ul>
    15. <script>
    16. $( "ul" ).append( "<li>" +
    17. ( $( "ul" ).has( "li" ).length ? "Yes" : "No" ) +
    18. "</li>" );
    19. $( "ul" ).has( "li" ).addClass( "full" );
    20. </script>
    21. </body>
    22. </html>

     

 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: