is there any debugger that shows why my code does not run in a particular browser?

-1

I used a lot of javascript / jquery to mount a project, but I ended up testing only in chrome (it's running perfect), so I decided to test in firefox and realized that several features are catching / not working. Is there a debugger that shows where a particular part is not working?

    
asked by anonymous 30.07.2015 / 21:04

1 answer

0

The question is old, but you can see which errors appear on the page by opening the console in the "Developer Tools" call, which is a native tool in modern browsers (on 11/11/2017 ).

To open the console , you can search for something like "Developer tools" in the browser options tabs or press shortcut key (s):

    Firefox 1 , Chrome 1 , IE 11 , Edge 1 : kbd> SHIFT + I +

When you see which errors appear in the console , you can identify where the error is causing the reason, including by identifying the line of code:

In this way it is easier to correct the error, verifying the compatibility between browsers and doing the correct correction.

1 In Windows 10.

    
11.11.2017 / 04:06