javascript - jQuery $(document).ready suddenly stopped working -


i'd ask sudden stop of jquery. used $(function(){ ... }) stopped working, though jquery still works inside of angularjs functions. tried rewriting $(document).ready(function(){ ... }) still isn't working.

any idea of how fix that?

you may want use developer tools (f12) within browser check console , network tabs see if errors present or if 404s popping due jquery library not being able accessed properly.

this caused if loading files cdn , there issue connection (or cdn). additionally, you'll want ensure aren't calling $(document).ready({...}); call until after jquery <script> file has been referenced


Comments