Prev Demo
jQuery
>
All Selector
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>jQuery all selector</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> </head> <body> <h1>All Selector.</h1> <div>This is Div</div> <p>This is Paragraph</p> <script> $("*").css("border", "5px dashed green"); </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output