JSFiddle - React, Tailwind, and code Playground
HTML
<!doctype html>
<html>
<head>
<!--[if IE]>
<script>/*@cc_on'abbr article aside audio canvas details figcaption figure footer header hgroup mark menu meter nav output progress section summary time video'.replace(/\w+/g,function(n){document.createElement(n)})@*/</script>
<![endif]-->
</head>
<body>
<div>wrap me</div>
</body>
</html>
JavaScript
$(function() {
$("div").wrap("<div class="hello"> </div>");
alert("Div's parent should be SECTION. It is: " + $("div:first").parent().get(0).nodeName);
});