Learn how to handle JavaScript issues and prevent errors.
Many extensions use JavaScript, relying on a library like jQuery. Using different scripts on a webpage can cause conflicts between them.
If your website does not work as you expect when you click something or an animation stopped working, this could be due to a script error. In this case the script execution will be stopped by the browser.
The following developer tools show you script-errors including information about what went wrong, the file and line number and the source code that caused the error.
Developer Tools | Description |
---|---|
Browser Debug Console | One way is using the browser's debug console on the page where the error occurs. It will help you to identify the scripts and their related files on your webserver. |
Firebug and other browser WDT | Firebug for Firefox allows you to inspect and non-destructively edit HTML and also includes a powerful JavaScript debugger. Other browsers like Chrome, Safari or Opera already have similar built-in tools. |
Usually the errors are caused by an extension or combination of multiple extensions. If you've detected a JavaScript error on a page, you need to find its origin.