Guest User

Untitled

a guest
Jan 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. input[type="submit"] {
  2. color:green;
  3. }
  4.  
  5. $('input[type="submit"]').css("color","green");
  6.  
  7. $(function() {
  8. $('input[type="submit"]').css("color","green");
  9. });
  10.  
  11. input[type="submit"]{
  12. color: green;
  13. cursor: pointer;
  14. font: bold 12px Helvetica,Arial,sans-serif;
  15. }
  16.  
  17. $('#submit_id/.submit_class').css("color","green");
Add Comment
Please, Sign In to add comment