tiff / wysihtml5

Open source rich text editor based on HTML5 and the progressive-enhancement approach. Uses a sophisticated security concept and aims to generate fully valid HTML5 markup by preventing unmaintainable tag soups and inline styles.
http://xing.github.com/wysihtml5/
MIT License
6.49k stars 1k forks source link

Many textarea #543

Open williansebastiao opened 9 years ago

williansebastiao commented 9 years ago

I have more of a textarea, and need to clear their contents in focus. But only at first I can ... how do I get the other?

IntellectProductions commented 9 years ago

Do you have any code you can show us to see how you have things setup?

williansebastiao commented 9 years ago

Estou utilizando o seguinte código. Porém, o mesmo só executa no primeiro índice, no segundo ele não executa

editor.on("focus", function() { $(editor.textareaElement).parent().removeClass('has-error'); $(editor.textareaElement).parent().find('span.help-block').detach(); });