Hi,
I have the following problem:
Code in .cpp file:
in onLoadFinished slot i have following piece of code:
view->page()->mainFrame()->evaluateJavaScript("test()");
Code in .js File:
function test(){
alert('Hello');
Qt.openUrlExternally("http://www.nokia.com");
}
Problem is that,test() function is getting called and also shows alert box "Hello" but Qt.openUrlExternally("http://www.nokia.com") does not work.
Thanks

Reply With Quote

