Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debug javascript in opera mini

How do i debug javascript in opera mini?

I have already installed opera mini emulator.

can someone help me how do i debug javascript remotely with dragonfly (firebug equivalent of opera)?

My script does in work in all other browser but not in opera mini

like image 279
ghmulchandani Avatar asked Oct 21 '22 00:10

ghmulchandani


1 Answers

Opera Mini supports console API like this:

server:console?post=http://url/to/your/script

OR

You can dump your log data to source and get source using this command(this fill display source code of current/last page for your device):

server:source

OR

Use remote console services like jsconsole.com. You add script tag with jsconsole script and key. After this use this key on jsconsole site to get the log.

NB: jsconsole script rewrites console.log calling via ajax request

like image 119
Pinal Avatar answered Oct 27 '22 10:10

Pinal