, , :
$('p').hover(function() {
$('<span class="both">BOOKMARK THIS</span>')
.appendTo(this)
.animate({opacity: 1.0})
}, function(){
var both = $(this).find('span.both');
both.fadeOut(600, function(){
both.remove()
});
});
, class id, , , span s — , , . id .
, , , :
$('p').hover(function() {
$(this).find('span.both').stop().remove();
$('<span class="both">BOOKMARK THIS</span>')
.appendTo(this)
.animate({opacity: 1.0})
}, function(){
var both = $(this).find('span.both');
both.fadeOut(600, function(){
both.remove()
});
});