JSFiddle - React, Tailwind, and code Playground
by Andy Bulka
HTML
<div id="topbit">
</div>
<div id="tabs">
<ul>
<li><a href="#project1">Project 1</a</li> </li>
</ul>
<div id="project1">
<!--tab content goes here --></div>
</div>
JavaScript
//$(“#tabs”).tabs();
$('body').append('hi there');
function msg(s) { $('body').append('<p>' + s) + '</p>' };
function msgtop(s) { $('#topbit').append('<p>' + s) + '</p>' };
o = {};
o.fred = 'fred is here';
o['mary'] = 'mary was here too';
msg(o.fred);
msgtop(o.mary);