mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 19:09:56 +00:00
11 lines
234 B
HTML
11 lines
234 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8" />
|
|
<title>display: none set dynamically</title>
|
|
|
|
<p id="hidden">Should not be visible</span>
|
|
|
|
<script>
|
|
var hidden = document.getElementById("hidden");
|
|
hidden.style.display = "none";
|
|
</script>
|