JSFiddle - React, Tailwind, and code Playground
by alimurrazi
HTML
<html>
<div id="test">
<h1>Hello</h1>
<h2>Hi</h2>
</div>
</html>
JavaScript
a = document.getElementById("test").outerHTML;
console.log(a + 'hello');
alert(a + 'hello');
by alimurrazi
<html>
<div id="test">
<h1>Hello</h1>
<h2>Hi</h2>
</div>
</html>
a = document.getElementById("test").outerHTML;
console.log(a + 'hello');
alert(a + 'hello');