I am using this plugin http://code.google.com/p/lwrte/, but I can not select the textarea or the id with jquery, I know it creates an iframe, but I read the docs and It does not mention anything about this issue, I just want to count the characters in the textarea and then that the user can not type, but I dont find a solution for this, has someone has a solution? what can I do?

<textarea id="message" rows="10" cols="120" class="rte1"></textarea>


$('#message').keyup(function(){ //tried with this does not work


            });

any more help??

link|improve this question

67% accept rate
feedback

1 Answer

Replace $('message') with $('#message') to get the actual element.

link|improve this answer
I tried with that but still does not work and If I delete the class in the textarea It works – Rick Salad Nov 28 '11 at 19:22
@RickSalad Why are you creating a 'blur' handler inside the 'keyup' handler? Remove the $(this.iframe).blur handler and just alert from inside the 'keyup' handler. – Blazemonger Nov 28 '11 at 19:26
I tried with that too but does not work I mean It a issue in the plugin – Rick Salad Nov 28 '11 at 19:27
any more help ? – Rick Salad Nov 28 '11 at 19:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.