I’m trying to use a component called Codemirror for in-browser source code editing. It works great, but IE7 has a bug (feature?) that autolinks all email addresses that are typed into the code editing window.
For example, if I type String x = "me@mydomain.com";, IE turns this into String x = me@mydomain.com; — it strips the quotes and underlines it.
Does anyone know how to override or disable this? Thank you.
-tjw
I have heard about Codemirror, but I did not used it yet, have you tried:
· Changing the @ for
@?· Adding a part of the string to the other?
· Parsing the final result to String again?