JSFiddle - React, Tailwind, and code Playground

by robertofrega

HTML

<div id="active-ene-drop" style="visibility:hidden;">This is it</div>

JavaScript

$(document).ready(function() {
    // Handler for .ready() called.
    if (location.hash == '#enedrop') {
        $('#active-ene-drop').css('visibility','visible');
    }
});