I have a textarea with a background, set by css. I want to remove this when the user has started the 4th line.
HTML
<textarea rows='7' cols='60' style='background(image.png)'></textarea>
Javascript:
$(textarea).css("background","#fff");
I just need a trigger
Thanks