I have html.
<p class="textlimity" title="heyheyhey"> asd</p>
now in js i would like to toggle the textlimity text() on mouseover and mouseout so i written.
var textlimity = "";
var texlimity_temp = "";
$(document).ready(function(){
$('.textlimity').live('mouseenter',function(){
textlimity = $(this).attr("title");
textlimity_temp = $(this).html();
$(this).html(textlimity);
}).live('mouseout',function(){
setTimeout(function(){console.log(textlimity_temp);$(this).html(textlimity_temp); },200);
});
});
logic is simple: on mouseover the .textlimity title="" val() replaces the .textlimity
.html() , and do the opposite on mouseoutI used .html() cause i could have both plain text or html code inside both title="" or
any suggest?