Replies: 3 comments 3 replies
-
The error message indicates that the jQuery library is not defined. This means that either the jQuery library file is not included in your HTML file or there's an issue with the path or syntax of the include statement. Make sure to have this in your website's If you're still having trouble, use your browser's developer tools to inspect the network tab and see if the jQuery file is being loaded successfully. You can also use the console to check for any additional error messages or warnings. Happy coding! |
Beta Was this translation helpful? Give feedback.
-
Can you show how you're trying to load jQuery into your pages? |
Beta Was this translation helpful? Give feedback.
-
I found the solution it seems it was detecting that was an a Node/CommonJS environment and some strange things happened to the scripts 👇 <script>if (typeof module === 'object') {window.module = module; module = undefined;}</script> |
Beta Was this translation helpful? Give feedback.
-
I'm trying to use Jquery on my PHP Native app but it shows this error:
Beta Was this translation helpful? Give feedback.
All reactions