JSFiddle - React, Tailwind, and code Playground
HTML
<div class="hello'_world">
</div>
CSS
div{
width : 200px;
height: 200px;
}
JavaScript
var tagDesc = "hello\\'_world";
$("." + tagDesc).css("background", "yellow");
<div class="hello'_world">
</div>
div{
width : 200px;
height: 200px;
}
var tagDesc = "hello\\'_world";
$("." + tagDesc).css("background", "yellow");