Hi, please note that I'm a complete beginner to Qt development.
I have a QWebView with a QObject added to the JavaScript window object. How do I fire a JS event on that object?
view->page()->mainFrame()->addToJavaScriptWindowObject(objName,obj);
I want to be able to listen to events using addEventListener.
window.objName.addEventListener('customEventName',function(e){ ... });
Thanks for any help.