JSFiddle - React, Tailwind, and code Playground
JavaScript
$(document).ready(function(){
var page = '<h1>Hello!</h1><p>FOO</p><span class="username">this is ur name</span><p>sample text</p>';
alert($(page).find('.username').html());
});
$(document).ready(function(){
var page = '<h1>Hello!</h1><p>FOO</p><span class="username">this is ur name</span><p>sample text</p>';
alert($(page).find('.username').html());
});