I want to insert some html into the page.
document.execCommand('insertHTML', false, "<a href=\""+ url + trackingParam + "\">"+ url + "</a>")
This command works fine in Chrome. But, I did some search, it seems like insertHTML
is not supported by IE 11.
I am wondering if there is a equivalent solution for IE 11.
Thanks!