Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Jquery:filter(selector) method

    • 0
    • 1
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 283
    Comment on it

    Jquery filter( selector) method:-

    It is one of the most important method which we can use to filter out elements from a list of DOM elements. It removes all elements from the set of matched elements that do not match the specified selector(s).

    Syntax:- selector.filter( selector )

    Example:-

    1. <html>
    2. <head>
    3. <title>The jQuery Example</title>
    4. <script type = "text/javascript"
    5. src = "http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
    6. </script>
    7.  
    8. <script type = "text/javascript" language = "javascript">
    9. $(document).ready(function() {
    10. $("li").filter(".middle").addClass("selected");
    11. });
    12. </script>
    13.  
    14. <style>
    15. .selected { color:yellow; }
    16. </style>
    17. </head>
    18. <body>
    19. <div>
    20. <h4>Mobile</h4>
    21. <ul>
    22. <li>Apple</li>
    23. <li>Sony</li>
    24. <li>HTC</li>
    25. <li>Samsung</li>
    26. <li>LG</li>
    27. <li>Motorola</li>
    28. </ul>
    29. </div>
    30. </body>
    31. </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: