/ Published in: jQuery
URL: http://css-tricks.com/textarea-tricks/
Expand |
Embed | Plain Text
textarea { background: url(images/benice.png) center center no-repeat; /* This ruins default border */ border: 1px solid #888; } $('textarea') .focus(function() { $(this).css("background", "none") }) .blur(function() { if ($(this)[0].value == '') { $(this).css("background", "url(images/benice.png) center center no-repeat") } });
You need to login to post a comment.
