JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://localhost:8081/js/jquery/jquery-ui-1.10.2.custom.min.js"></script>
<div id="reportInfoDescDialog" title="Error Response Definitions">
<p>Explanations for the most common errors:<br />403 - Permission Denied: This means we were denied permission to access a link.<br />404 - Not Found: This means the page was not found<br />500 - Internal Server Error:<br />503 - Gateway Timeout:<br />504 -<br />DNS Error: Error Resolving the hostname<br />Timeout:<br />SSL Error:<br /></p>
</div>
Less common errors are contained in this report. You can <a href="#" id="reportInfoDesc">see full descriptions of each error response here.</a>
JavaScript
$('#reportInfoDesc').click(function(){
$('#reportInfoDescDialog').dialog('open');
});
$('#reportInfoDescDialog')
.dialog({
autoOpen: false,
modal: true,
});