Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var button = document.createElement( 'button' );
- var chat = document.getElementsByClassName( "chat" );
- button.style.position = "absolute"; button.style.color = "black"; button.innerHTML = "Tryb Boga OFF";
- document.body.prepend( button );
- button.onclick = function() {
- if(button.innerHTML == "Tryb Boga ON"){
- chat[0].contentEditable = "false";
- button.innerHTML = "Tryb Boga OFF";
- } else {
- chat[0].contentEditable = "true";
- button.innerHTML = "Tryb Boga ON";
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment