Jqury HashtagFinder
HashtagFinder by Nishan Weerasinghe
by fiddleyetu
HTML
<br /><br />
<label class="hashtag">This is #hashtag #test #label</label>
<br />
<br />
<label class="hashtag">This is another #label for hashtag example #test</label>
CSS
.hashtag{
font-size:22px;
}
JavaScript
$(document).ready(function(event){
$('.hashtag').html(function(_,html) {
return html.replace(/(\#[a-z]+)/gi, function(x) {
return "<a href='#' class='smallcaps' style='text-decoration:none; background-color:rgba(113, 162, 252, 0.63); color:white; padding:2px 4px 2px 4px; border-radius:2px;'>" + x + "</a>";
});
});
});