While dynamically adding bootstrap popovers to my jquery editor, I found that any links inside the editor are rendered unclickable. I am placing hyperlinks inside my popovers' content and those links are rendered unclickable too. Any idea how override this effect in the editor to make them clickable. Thank you.
Html
<textarea class="textarea"></textarea>
Dart
context.callMethod(r'$', ['.textarea']).callMethod('jqte');
querySelector('.jqte_editor').children.add(new AnchorElement(href: 'dartlang.org')..text = 'link');