JSFiddle - React, Tailwind, and code Playground

by pedromendessk

HTML

<div class="message success"><p><span class="glyphicon glyphicon-ok-sign" aria-hidden="true"></span> Your submission has been received.</p></div>

<div style="height: 1500px;"></div>

<div style="height: 15px; width:200; background: gray;">
    anchor bellow
</div>
<a name="maincontent" tabindex="-1" id="maincontent"/>

JavaScript

$(document).ready(function() {
    if ($('body').find('.message').length > 0) {
        goToAnchor('maincontent');
    }
});

function goToAnchor(id) {
    var url = location.href;  //Save down the URL
    location.href = "#" + id; //Go to the anchor.
}