July 18, 2008 at 6:43 pm (web)
Tags: Issue yahoo groups unicode
I am a member of a yahoogroup which uses unicode to communicate (in Hindi).
Recently, I found a bug.
To avoid getting multiple mails , I subscribed to the web read only feature but when I tried to respond to any entry from the site, the unicode got messed up.
But when I subscribed again to the individual emails and tried to respond from my inbox the unicode was perfectly rendered.
Could yahoo people please try to fix this bug?
Thanks so much,
Archana
2 Comments
July 18, 2008 at 6:39 pm (Learning at Tacit)
Tags: form elements enter refresh
Recently, I had issues with a set of text boxes which were not within a form. The onEnter (when pressed enter) on any of the text boxes would refresh the page as it was considered a submit by default.
This was causing problems in the page where I had an AJAX application.
So, we need to cancel the event trigger by ‘enter’.
This is done by the following line- the ‘enter’ is code 13 on the keyboard – (in the element like text box)
onKeyPress=”return event.keyCode!=13″
Leave a Comment