JSFiddle - React, Tailwind, and code Playground

by Amar Nyayapati

HTML

<p>
Once there was a <em title="huge, gigantic">large</em> dinosaur...
</p>

The title of the emphasis is:<div></div>

<script>
    var title = $("em").attr("title");
    $("div").text(title);
</script>

CSS

em{
    color:blue;
    font-weight:bold;
}
div{
    color:green;
}