If I have an embedded browser in a windows form, is it possible to initiate a javascript method from the container application?
+2
A:
You can use Document.InvokeScript, as outlined in this excellent MSDN article:
How to: Implement Two-Way Communication Between DHTML Code and Client Application Code
Matt Hamilton
2008-11-18 22:04:54
+1
A:
Yes There is..
webBrowser.Document.InvokeScript("doSomething()");
Quintin Robinson
2008-11-18 22:06:37