-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uncaught ReferenceError: $ is not defined #66
Comments
@phillharmonic please define jQuery globally in your Webpack config so that it can be visible to the editor JS.
|
I use Encore for my webpack.config.js file:
' .autoProvidejQuery()' fixes that issue for modules that expect jQuery to be global; unless I'm not understanding correctly. Thanks. |
@stefanneculai not sure why you closed this issue. It has not been resolved. |
@phillharmonic it looks like there is a problem with Encore: symfony/webpack-encore#52. |
@stefanneculai: thanks for the reference. FYI, I did the following in Encore (according to your referenced bug work-around) and the issue persists:
All other jQuery references in my Project work as expected. Just not kms_froala_editor. Looks like I'll need to source another wysiwyg editor. Thanks. |
is there any difference if you use @sguionni any idea where the problem might come from? |
No difference is I use Thanks for reopening; I really do want to use your editor! |
@phillharmonic what's the JS error given by the console ? |
Console Error:
Line 360:
|
Do you include your JS files into the head or at the end of the body ? |
Typically at the end. However, I just switched them all to the head and the error persists. |
I have the same issue. Did you found a solution ? |
Not yet, unfortunately. |
I just realized that the developers did not put these lines at the top of their app.js.
|
@kevinimbrechts : did you get it to work? If so, how exactly? I added those lines to froala_editor.min.js, is that what you mean? I couldn't find an app.js in their plugin. |
Yes it works. The app.js is a custom js file. |
@kevinimbrechts : forgive my ignorance. I'm not sure I follow. Did you add the app.js file to your app's webpack.config.js file with:
And then in that app.js file add:
If so, I did this and am still unable to get it to work. Also, I am already importing in my webconfig:
If you could help sort me out, I'd appreciate it. Thx |
Basically $ is an alias of jQuery() so when you try to call/access it before declaring the function, it will endup throwing this $ is not defined error . This usually indicates that jQuery is not loaded and JavaScript does not recognize the To solve this error: Load the jQuery library at the beginning of all your javascript files/scripts which uses $ or jQuery, so that $ can be identified in scripts . There can be multiple other reasons for this issue:
|
Thanks man, finally found your post 🙏🙏 The issue caused due to this single line gave me a lot of pain... though I hardly find any post at SO or github where they mentioned this...again thanks, you save me from big trouble |
I'm using Symfony 4 & Webpack. Installed per instructions and am getting the above error in the browser's console. The following statement is throwing the error:
kms_froala_editor.yaml:
My layout.js that includes the required js:
A quick scan of the page shows that all javascript files that are required (jquery & froala) are being included. I suspect it's an issue of "$( document ).ready" being called.
At any rate, at present am unable to use wysiwyg editor. Any help would be appreciated.
The text was updated successfully, but these errors were encountered: