JSFiddle - React, Tailwind, and code Playground
HTML
<table cellpadding="5" cellspacing="5" border="0" id="TableID" class='tableOne'>
</table>
<input id="btn" value="test" type="button" />
CSS
.tableOne
{
border: 3px solid black;
}
.tableTwo
{
border: 2px solid red;
}
JavaScript
$('#btn').click(function() {
var html = '';
html += "<div class='pubwrapper row-fluid'><div class='imgWrapper span3'><img src='/Portals/160/Images/State Courts YT3.jpg'/></div><div class='contentWrapper span9'><div class='wrapperBody'><div class='row-fluid'><br /><br />Applying our speech recognition technology that provides automatic speech transcription of the English conversations, this STS allows real- time transcription of the oral evidence and delivery presented, without the use of court reporters or transcribers. Current system takes an external service provider about seven days to fully transcribe all the court proceedings digitally recorded.<br /></span></div></div></div></div></div>";
$('#TableID').append(html);
newhtml = "<tr><td>Row3</td></tr>";
$('#TableID').append(newhtml);
});