JSFiddle - React, Tailwind, and code Playground
HTML
<div class="myclass">
Lorem ipsum dolor sit amet, http://example.com consectetuer adipiscing elit.
</div>
JavaScript
(function($) {
$(function() {
$('.myclass').each(function() {
var el = $(this);
if (el.html().indexOf('http') > -1) {
var html = el.html();
html = html.replace(/(https?:[\S\.!]+)/gi, '<a href="$1">$1</a>');
el.html(html);
}
});
});
})(jQuery);