There is such a script:
var wpcomment = document.getElementById('post_new_txt'); wpcomment.onkeyup = wpcomment.onkeypress = function(){ document.getElementById('flash').innerHTML = ('Пишет вам сообщение'); }
When entering text, it shows "Writes you a message," and if you delete everything, it still shows. It is necessary to hide this inscription if a person does not write. How to implement it?
this.value===''
- zb '