I am trying to access a page that has certain javascript that causes errors and prevents the page from fully rendering.
<script language="Javascript">
parent.hidden.vPageState = parent.hidden.NEW_LIST;
</script>
and
<body onload="top.menu.activateCell(3);">
Both of these errors are related to the fact that I am accessing the page directly and not via frames.
I've gotten around this by making my own clone of the page and hosting it but I don't like that solution and was wondering if there was a way to somehow
Override/Alter or better yet Erase that code using Javascript injection via Webbrowser control
Thanks