navigate throurh html editor (iframe)
Hi All!
I have a html editor (iframe) component on window.
Inside it there's href tag.
While render it looks like common href tag, but doesn't handle any onclick event in it.
By this link I need to go on another local source page
Tried
Code:
<a onclick="parent.document.location='some_url';" style="cursor:pointer;"></a>
And
Code:
<a href='some_url';" style="cursor:pointer;" target="_top"></a>
But nothing changed..
Is it possible to navigate through link inside html editor ?