Advertisement
Guest User

Untitled

a guest
Jan 19th, 2012
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <style type="text/css">
  5. .box {
  6. background-color:#FFFF00;
  7. }
  8. </style>
  9.  
  10. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  11.  
  12. </head>
  13. <body>
  14. <script>
  15. [].forEach.call( document.querySelectorAll('.box'), function(el) {
  16. el.style.color = 'red'; // or add a class
  17. });
  18. </script>
  19.  
  20. <div class="box">
  21. This is red
  22. </div>
  23.  
  24. <script>
  25. $(‘.box’).css(‘color’, ‘red’);
  26. </script>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement