JSFiddle - React, Tailwind, and code Playground

by raad

HTML

<button id="menuitem">MENU</button>

JavaScript

window.onbeforeunload = function () {};

window.onpopstate = function (e) {
    console.log('onpopstate was called');
    if (e.state) {
        window.location.href = e.state.page;
    }
};

$("#menuitem").click(function () {
    $("#content").load("https://fiddle.jshell.net/raad/u8qvLrtd/show/light/");
    window.history.pushState({
        page: "https://fiddle.jshell.net/raad/u8qvLrtd/show/light/"
    }, "", "https://fiddle.jshell.net/raad/u8qvLrtd/show/light/");
    document.title = 'JSFiddle - jQueryUI DatePicker on DIVs';
});