Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I debug Javascript in embebed browser in Window?

I need to debug Javascript (Jquery) sources in embedded browser in Windows 7 and XP, when I working with the browser in the Sketchup. I tried with console.log, but it doesn't helps me because brakes the layout from the app. Anyone have a solution?

like image 868
Júlio Griebeler Avatar asked Nov 03 '22 13:11

Júlio Griebeler


1 Answers

In Windows Try debug javascript with Charles Web Debugging Proxy www.charlesproxy.com

To enable the Web Inspector panel in WebDialog on Mac OSX...

  1. Go to ~/Library/Preferences/com.xxx.yourapp.plist
  2. Open the file with the Property List Editor.app(default) or other
  3. Click on the add [+] icon
  4. new item name "WebKitDeveloperExtras", then tab
  5. set type to boolean, then tab
  6. check box, sets this value to true
  7. open your app, open a WebDialog, right click in a void and select "Inspect element" to open Inspector
like image 133
romuloigor Avatar answered Nov 09 '22 10:11

romuloigor