Hidden Text
THIS TEXT IS HIDDEN <--
There is text above that is set to white so it is hidden unless you drag your mouse over it.
You must have the latest text formatting option installed for this to work. It is stll being rolled out.
Drag mouse over area above
Enter this in the code section of the Embed function:
<span style="background: white; color: white">Your spoiler text here</span>
<!DOCTYPE html><html><head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
});
</script>
</head>
<body>
<p>If you click on the "Hide" button, I will disappear.</p>
<button id="hide">Hide</button>
<button id="show">Show</button>
</body>
</html>