I would like to invoke a Javascript function on a web page that does not have a function name. Using C#, I would normally use Webbrowser.Document.InvokeScript("ScriptName")
. In this instance however, there is only a type attribute. This is what it looks like:
<script type="text/javascript">
(function(){
SOME CODE HERE;
})();
</script>