I'm pondering the best way to let users add special characters (any character missing on their keyboard) in a TEXTAREA.
The simplest solution is to just list the special characters on the page and let the user highlight, copy and paste them. However this requires a few precision mouse operations, especially with small characters.
A more user-friendly idea might be to let the user click on the character and have it inserted automatically at the TEXTAREA's caret position (like the smileys work on this forum). The disadvantage with this is javascript dependency, as well as lack of browser support for the existing solutions.
Any other ideas?
