JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head></head>
<body data-too-large="25049646090949999">
    <p>Results:</p>
    <a href="#" id="results">Click</a>
</body>
</html>

JavaScript

$('#results').click(function (ev) {
    ev.preventDefault();
    $(this).remove();
    $('p').append('<br/>' +
        $('body').data('too-large') + '<br/>' +
        $('body').attr('data-too-large'));
    return false;
});