Advertisement
isabelleromhagen

JavaScript

Sep 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $( ".inner-switch" ).on("click", function() {
  2. if( $( "body" ).hasClass( "light" )) {
  3. $( "body" ).removeClass( "light" );
  4. $( ".inner-switch" ).text( "AV" );
  5. } else {
  6. $( "body" ).addClass( "light" );
  7. $( ".inner-switch" ).text( "Pƅ" );
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement