Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • jQuery siblings() method

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 406
    Comment on it

    The jQuery siblings() method gives back all siblings components of the  component which we have selected.

    By using sibling() method we can select all the siblings of the component which we have selected and then we can use them.

    Syntax

    selector.siblings()

    selector − it is used to select html elements in which jquery has to be applied by using either id , class or html elements.

    sibling() method also have an optional parameter which is explain below.

    selector.siblings( [selector] )

    The selector which is  inside a brackets is  optional parameter which is used to filter the search for sibling.

    Below is the example for JQuery sibling() method:-

    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body * { 
        display: block;
        border: 3px solid lightgrey;
        color: grey;
        padding: 6px;
        margin: 16px;
    }
    </style>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script>
    $(document).ready(function(){
        $("h1").siblings().css({"color": "#4FB053", "border": "1px solid #4FB053"});
    });
    </script>
    </head>
    <body>
    
    <div>parent div
      <p>para</p>
      <span>span</span>
      <h1>heading</h1>
      <p>para</p>
      <p>para</p>
    </div>
    
    </body>
    </html>

    In above example we are selecting all the siblings of the <h1>tag with the help of jQuery siblings() method and then making their color green.

    Working demo:-https://jsfiddle.net/sjr7uxbf/

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: