jQuery Selectors
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html> <head> <title>jQuery CDN Example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("div").css("background","yellow"); }); </script> </head> <body> <div> This id test div one .....and background is added using jquery... </div> <br> <div> This id test div two.....and background is added using jquery... </div> </body> </html>
<!DOCTYPE html> <html> <head> <title>jQuery CDN Example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("div").css("background","yellow"); }); </script> </head> <body> <div> This id test div one .....and background is added using jquery... </div> <br> <div> This id test div two.....and background is added using jquery... </div> </body> </html>
Copyrights@tutorialsplane.com