I have a contenteditable div, when the user presses space or pastes into it, its content is searched for an url (via regex) that get substituted with:
<a href="' + url + '" title="' + url + '" target="_blank" class="label label-info label-url" contenteditable="false">url: \'' + url + '\'</a>
and it works.
The problem is that when you go on writing or pasting, the three urls in that <a> tag will get evaluted again and subsituted, causing havoc, so I need a way to avoid them from being evaluted, either by changing the regex (it should ignore url preceeded by href=", title=" or url: ') or changing the js.
jsfiddle: http://jsfiddle.net/YUekd/