Home
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"> </script> <script> $(document).ready(function () { $('#myDiv').siblings().css({"color": "green", "border": "2px solid green"}); }); </script> </head> <body> <div> <p>This is First paragraph.</p> </div> <div id="myDiv"> <p>This is myDiv.</p> </div> <div> <p>This is third paragraph.</p> </div> </body> </html>
Result: