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 mouseout

I used .html() cause i could have both plain text or html code inside both title="" or

any suggest?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Here is and adaptation of @David's code with all issues resolved..

$('.textlimity').live('mouseenter', function() {
    var self = $(this);
    clearTimeout( self.data('restore') );
    if (!self.data('saved')) {
        self.data('saved', self.html()); // store the original content
    }
    self.html(this.title); // set content from title
}).live('mouseout', function() {
    var self = $(this);
    self.data( 'restore', setTimeout(function() {
        self.html(self.data('saved')); // revert to the stored content
    }, 200) );
});

demo at http://jsfiddle.net/gaby/dQTDZ/4/

link|improve this answer
wonderfull thanks!! – Ispuk Oct 1 '11 at 14:03
feedback

Looks a bit complicated. How about:

$('.textlimity').live('mouseenter',function(){
    $(this).data( 'saved', $(this).html() ) // store the original content
           .html( this.title ); // set content from title
}).live('mouseout',function(){
     setTimeout(function() {
         $(this).html( $(this).data('saved') ); // revert to the stored content
     }, 200);
});

Fiddle: http://jsfiddle.net/dQTDZ/

link|improve this answer
yep it works good, the only thing i would like is some delay when restoring html or some fadeIn fadeOut effects cause as it is now it looks too fast :P – Ispuk Oct 1 '11 at 13:34
OK, see my edit. – David Oct 1 '11 at 13:43
1  
@David, you need to store a reference to the this because setTimeout is executed out of current context.. Also the current logic, if you move the mouse a bit fast on/off the element, it will store at the saved data the title (if it has not yet been restored by the timeout) and will effectively lose the original value forever.. – Gaby aka G. Petrioli Oct 1 '11 at 13:48
yep it doesn't works with setTimeout i was trying too, but it replaces but not returns to original text/html :( – Ispuk Oct 1 '11 at 13:50
@ispuk the code for the timeout to work correctly can be found at jsfiddle.net/gaby/dQTDZ/1 – Gaby aka G. Petrioli Oct 1 '11 at 13:51
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.