JSFiddle - React, Tailwind, and code Playground
by danzkusuma
HTML
<div id="aaa">
</div>
JavaScript
var dom = $('#aaa');
function test(){
dom.html("TELO");
}
function test(str){
dom.html("TELO" + str);
}
$(function(){
});
by danzkusuma
<div id="aaa">
</div>
var dom = $('#aaa');
function test(){
dom.html("TELO");
}
function test(str){
dom.html("TELO" + str);
}
$(function(){
});