Okay i would like to add a class cfse_a to an element #searchput when the mouse is hovering over the element and then when the mouse is not hoverin
cfse_a
#searchput
Hope this helps.
$('#searchput').mouseover(function() { $(this).addClass('cfse_a'); }).mouseout(function(){ $(this).removeClass('cfse_a'); });