skip to Main Content

Using custom theme for Magento2. I am creating navigation from backend by adding categories.

The problem I’m facing is with the sub-categories, onMouseover the sub-categories is not appearing.

I am getting error in console.

Uncaught TypeError: Cannot read property 'concat' of undefined
at jquery.mobile.custom.js:44

2

Answers


  1. Looks like jQuery Mobile might not be compatible with jQuery Core 3. Page works when you downgrade to version 2.2.4.

    Login or Signup to reply.
  2. This also could be happening when another version of JQuery is loaded over the base version by some other modules and then due to compatibility issues jquery.mobile.custom.js starts getting undefined event properties of the mouse.

    Please check version compatibiltiy.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search