I am trying to add a ‘read more’ text when someone mouseovers my blog post’s title.
I tried using
$(".blogpost").mouseover(function(){
$(this).append(" - read more...");
});
But i don’t know how to remove the read more… when onmouseout.
I am trying to add a ‘read more’ text when someone mouseovers my blog
Share
Add read more in span and remove that span on mouse out
Add read more wrapped in span.
Remove added span with its id which is read in this case.