How can I debug a problem where some JavaScript on my website seems to be crashing the Android web browser?
-
The browser just crashes and exits so it's hard to see any errors, etc. There aren't any errors or problems on iPhone Safari or on Chrome or Safari or Firefox on the desktop.
-
Answer:
The Android browser emits debugging messages via the Android Debug Bridge, which you can view in real time on your desktop if the phone is connected via USB. There are instructions at http://developer.android.com/guide/developing/debug-tasks.html#DebuggingWebPages describing how to use this to debug JavaScript. If using the ADB isn't an option, you'll just have to use a process of elimination. Remove or comment out all the JavaScript. Load the page. If it loads successfully, begin adding back small portions of code and re-testing until you reproduce the crash again. Then backtrack, line by line if necessary, to narrow down the exact cause.
Ryan Grove at Quora Visit the source
Other answers
Ryan's answer is great. I have another idea in between using adb and backtracking. Insert logging calls which write to a web application that stores them in a database on every line which explain what is about to happen, and the state of all your data prior to the calls.
David Nelson
You could use weinre (web inspector remote) -- just fire up an instance / include a script tag in your site and you'll be able to use the Safari/Chrome style web inspector to debug your app remotely. http://people.apache.org/~pmuellr/weinre/
Ralston Clarke
Related Q & A:
- How can I make a dynamic web page in PHP?Best solution by Yahoo! Answers
- How can I get a web design job in Toronto?Best solution by Yahoo! Answers
- How can I remove a casset tape from my car player? It is a 2003 Hyundai Sonota. Does anyone else this problem?Best solution by Yahoo! Answers
- How can I block a specific web page?Best solution by Yahoo! Answers
- How can I pick a good web cam?Best solution by forbes.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.