how i can take html tag's css before in js code example
Example: how i can take html tag's css before in js
$('span').hover(function(){
$(this).attr('data-content','bar');
});
$('span').hover(function(){
$(this).attr('data-content','bar');
});