How can use :contains
to find the object has a certain keyword when it is clicked?
<a href="#" class="click">» Read More</a>
$('.click').click(function() {
if($(":contains('More')", this)) alert('1');
});
I get the alert whenever it contains the keyword or not... how can I make it?