I am trying to execute a javascript part in a silverlight application. Pretty simple example I created ... Only one button that tries to execute this line of code ...
private void Button_Click(object sender, RoutedEventArgs e)
{
HtmlPage.Window.Eval("alert('hi');");
}
A warning window will appear, but it freezes firefox, I have to force quit firefox to never come back to life .... has anyone come across this?
I thought maybe the firefox plugin is causing the problem, but I disabled them all with the same results.
The only way to make it work if I go to about:configin firefox and install dom.ipc.plugins.enabled.npctrl.dllinfalse
Any ideas ???
source
share