In my admin section of magento I am getting error Uncaught ReferenceError: jQuery is not defined
How I resolve it please let me know
asked Aug 21, 2015 at 7:28
konika
5792 gold badges7 silver badges23 bronze badges
-
Can you please provide more details. Your question title and description has no relevancy. Can you explain what you are trying to achieve.Dhanpat Saran– Dhanpat Saran2015年08月21日 07:30:54 +00:00Commented Aug 21, 2015 at 7:30
-
jquery library added in head?Qaisar Satti– Qaisar Satti2015年08月21日 07:45:07 +00:00Commented Aug 21, 2015 at 7:45
-
Have you installed any 3rd party modules recently?rob3000– rob30002015年08月21日 08:04:04 +00:00Commented Aug 21, 2015 at 8:04
-
jQuery isn't included by default in Magento1, so you need to check 3rd party module or theme requirementsDouglas Radburn– Douglas Radburn2015年08月21日 08:08:00 +00:00Commented Aug 21, 2015 at 8:08
-
How I can include jquery for magento backendkonika– konika2015年08月21日 08:30:12 +00:00Commented Aug 21, 2015 at 8:30
1 Answer 1
- It depends on which version of Magento you're using. From ver. 1.9 onward, magento comes with jQuery, but before 1.9, it doesn't have jQuery.
- So, you're getting this error, because in your theme (admin/frontend) jQuery functions are called, but you don't have jQuery installed in your server.
Solution:
answered Aug 21, 2015 at 9:12
Rahul Kumar Das
1,8311 gold badge17 silver badges19 bronze badges
default