Preview:
jQuery(document).ready(function ($) {

    $('.sptp-filter .button').on('click', function (e) {
        e.preventDefault();
        var slug = $(this).data('slug');
        if (slug) {
            window.location.hash = slug;
        } else {
            history.pushState("", document.title, window.location.pathname + window.location.search);
        }

        $('.sptp-filter .button').removeClass('is-checked');
        $(this).addClass('is-checked');
    });

    var hash = window.location.hash.substring(1); 
    if (hash) {
        var $targetButton = $('.sptp-filter .button[data-slug="' + hash + '"]');
        if ($targetButton.length) {
            $targetButton.trigger('click');
        }
    }

});
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter