css stops working after javascript function is run | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

css stops working after javascript function is run

idk what's happening, but whenever i use a html button with onclick and make it run a javascript function the css stops working and reverts to the default style. please help so that the css is consistent ;-; CSS ``` body { background-color:black; color:white; } ``` HTML ``` <!DOCTYPE html> <html> <head> <title>Battle Simulator</title> </head> <body> <p>Pick a monster to battle!</p> <button onclick="basicSlime()">Basic: Slime</button> <script> function basicSlime() { document.write("A basic Slime appears!<br/><br/>What will you do?"); } </script> </body> </html> ```

5th Oct 2018, 3:25 PM
Maya
Maya - avatar
1 Answer
+ 6
don't use .write method you can also use document.getElementsByTagName('button')[0].innerHTML="A basic ... " you can see this working here https://code.sololearn.com/WqhZ63zcJ7Ga/?ref=app
5th Oct 2018, 7:25 PM
AliR૯za
AliR૯za - avatar