Utsu-P Wiki

Unofficial source of all things Utsu-P!

User Tools

Site Tools


playground:playground

This is an old revision of the document!


  • Unordered List Item

im retarded and cant draw to save my life but im not about to open up

<div style="color: blue;">This text is hidden by default.</div>
<div>This is another hidden line of text.</div>

<button onclick=“toggleText()”>Show Hidden Text</button>

<script>

function toggleText() {
  var hiddenText = document.getElementById("hiddenText");
  if (hiddenText.style.display === "none") {
    hiddenText.style.display = "block";
  } else {
    hiddenText.style.display = "none";
  }
}

</script>

playground/playground.1700948572.txt.gz · Last modified: 2023/11/25 21:42 by kisu_odd

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki