TypeError: undefined is not an object (evaluating 'jQuery.easing.swing')
See original GitHub issueI get this error after I’ve installed angular2-materialize as explained in “Installing & configuring angular2-materialize in projects created with angular-cli@webpack (1.0.0-beta.11-webpack.8)”
I’ve used this code to test:
<ul materialize="collapsible" class="collapsible" data-collapsible="accordion">
<li>
<div class="collapsible-header"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">place</i>Second</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet.</p></div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">whatshot</i>Third</div>
<div class="collapsible-body"><p>Lorem ipsum dolor sit amet.</p></div>
</li>
</ul>
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Uncaught TypeError: undefined is not a function (jQuery ...
When this happens, your page cannot find jQuery even though it is being called. ... has to be jQuery, bootstrap (if you're using...
Read more >jQuery.easing[jQuery.easing.def] is not a function - MDBootstrap
How can i solve this one, i tried adding jquery.easing.js above mdb.min.js ... TypeError: jQuery.easing[jQuery.easing.def] is not a function at Object.swing ...
Read more >Edit click throws 'undefined' is not an object (evaluating 'this ...
Hi, I could not find examples for all scenarios, here's where I'm at ... Edit click throws 'undefined' is not an object (evaluating...
Read more >Team:NCTU Formosa/jquery - iGEM 2019
Objects with no prototype (e.g., `Object.create( null )`) are plain if ... jQuery.easing = { linear: function (p) { return p; }, swing:...
Read more >ext[key].bind is not a function - You.com | The AI Search ...
TypeError : undefined is not an object (evaluating '_$$_REQUIRE(_dependencyMap[4], ... easing:'swing', step: function() { jQuery('#tvs').text(Math.ceil(this.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Sorry for being late. Here a working repo using angular-cli 1.0.0-beta.15 and Materialize: https://github.com/pragdev/angular_example
It is important to make sure you have a clean installation of angular-cli so please follow these instructions first: https://github.com/angular/angular-cli#updating-angular-cli
After that clone the repo and npm install in your project. Hope it helps.
Thanks @pragdev. I’ve added a link to the example repository.