JSFiddle - React, Tailwind, and code Playground
by southerd
HTML
<div id="templates">
<div class="jqm">
<div class="jqm"> JQM Stuff! </div>
</div>
</div>
JavaScript
$.template = function(selector){
return $("#templates " + selector).html();
}
console.log($.template(".jqm"));