If a user clicks on a tag, right now it recognizes the full text (numbers and characters).
returns Popular Tag %82
I've tried:
$tag.click(function(){
var $this = $(this);
var text = $this.text();
var num = text.parseInt();
num.remove();
alert(text)
});
Doesn't do the trick for numbers. So how would I get just the letters? Ie: ignoring BOTH numbers and special characters(%)
Fiddle here! Thanks for you help!