Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. let textStyle = $('#format-text input');
  2. $('#bold-btn').on('click', function(){
  3.  
  4. //textStyle.css('font-weight','700');
  5. if($("#format-text input").css('font-weight') == '400'){
  6. $("#format-text input").css('font-weight','700')
  7. }
  8. else if ($("#format-text input").css('font-weight') == '700'){
  9. $("#format-text input").css('font-weight','400')
  10.  
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement