I have the following:
var newValue = $('.TwitterSpot').text().replace('#', 'Blah Blah');
$('.TwitterSpot').text(newValue);
My assumption is that it will get all characters or pieces of text that have "#" replace it with Blah Blah.
It is not working? What am I missing?
The end result I want is to get #tag and replace it with a link to a link to twitter.com/#!/search/%23tag.
.TwitterSpotclass?