JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://bitbucket.org/cleonello/jqplot/raw/b5a7796a9ebf/src/jquery.jqplot.js"></script>
<title>Test</title>
<body>
<div id="chart1"></div>
</body>
JavaScript
$(document).ready(function(){
document.write("<p>It works!!!</p>");
document.write("<p>It works!!!</p><div id='chart1'></div>");
var plot1 = $.jqplot ('chart1', [[3,7,9,1,4,6,8,2,5]]);
});