"toggle Textfield Value" jQuery-Plugin Demo

Blogpost zum Plugin

Bewege deine Maus über die Textboxen

Code:
$('#email, #search').toggletextfieldvalue({autoselect: true});

... mit MouseOver- und MouseOut-Callback-Handler

Code:
$('#comment').toggletextfieldvalue({
  mouseover: function(obj) {
    $(obj).height($(obj).height() + 100);
  },
  mouseout: function(obj) {
    $(obj).height($(obj).height() - 100);
  }
});

Blogpost zum Plugin