Advertisement
lessientelrunya

changecolor3

Jul 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // In your HTML:
  2. <button class="jQButton">Purple</button>
  3. ...
  4.  
  5. // In your JS file:
  6. $(document).ready(function() {
  7.     $('.jQButton').click(function() {
  8.         $('#colorDiv').css('background-color', this.innerHTML.toLowerCase());
  9.     });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement