I got a problem and I have no idea how to deal with it.
Ok, I want to run a script with the click of a button and the script I want to run is in the html on my WebBrowser.
This is an example of the script:
NOTE: *do this do that* is an example
I want to be able to run that function at the click of a button in Visual Basic. Also, there are some other scripts on this page so how can I separate this <script> from the others and run it? Also, the HTML tag doesn't contain a type like <script type="JavaScript"> it is just <script>.
Ok, I want to run a script with the click of a button and the script I want to run is in the html on my WebBrowser.
This is an example of the script:
Code:
<script>
Function *do this do that*
</script>
I want to be able to run that function at the click of a button in Visual Basic. Also, there are some other scripts on this page so how can I separate this <script> from the others and run it? Also, the HTML tag doesn't contain a type like <script type="JavaScript"> it is just <script>.