Javascript debug: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
No edit summary
Tags: Mobile edit Mobile web edit
 
Line 7: Line 7:


* Was the function was conflict with different js libraries? e.g. [https://stackoverflow.com/questions/41961708/uncaught-typeerror-tooltip-is-not-a-function javascript - Uncaught TypeError: $(...).tooltip is not a function - Stack Overflow]
* Was the function was conflict with different js libraries? e.g. [https://stackoverflow.com/questions/41961708/uncaught-typeerror-tooltip-is-not-a-function javascript - Uncaught TypeError: $(...).tooltip is not a function - Stack Overflow]
* Check for syntax conflicts between different versions of JavaScript frameworks, e.g., Bootstrap 3 vs Bootstrap 5 syntax differences


* Checking the typo or "ensure that there are no compile-time errors"<ref>[https://stackoverflow.com/help/mcve How to create a Minimal, Complete, and Verifiable example - Help Center - Stack Overflow]</ref> by using [https://www.jslint.com/ JSLint] or other [[Javascript debug#tools | tools]].
* Checking the typo or "ensure that there are no compile-time errors"<ref>[https://stackoverflow.com/help/mcve How to create a Minimal, Complete, and Verifiable example - Help Center - Stack Overflow]</ref> by using [https://www.jslint.com/ JSLint] or other [[Javascript debug#tools | tools]].

Latest revision as of 05:50, 9 December 2025

<< Testing: Javascript

🌐 Switch language: English, 漢字


Steps of troubleshooting[edit]

  • Were the required js fils were included?
  • Check for syntax conflicts between different versions of JavaScript frameworks, e.g., Bootstrap 3 vs Bootstrap 5 syntax differences
  • Checking the typo or "ensure that there are no compile-time errors"[1] by using JSLint or other tools.
  • Disable the browser extension e.g. switch to incognito window on Chrome Browser chrome.png
  • Quit the browser helper software e.g. video downloader
  • Clear or disable the browser cache[2]
  • Reload the webpage again
  • Switch to different network environment

Methods/Functions to Help with Debugging[edit]

Print message

DOM

Data type

Browser tool

Browser cache issue

tools[edit]


Further reading[edit]

References[edit]


Troubleshooting of ...

Template