Jquery Mobile Error Can not read property 'concat' of undefined

0

When I try to call the Jquery Mobile library (Using CDN or the code itself downloaded from Jquery Mobile .

I get the following error in the browser console (Chrome and Firefox):

  

Uncaught TypeError: Can not read property 'concat' of undefined

So I can not use anything from Jquery Mobile. Does anyone know anything that will help resolve this?

    
asked by anonymous 28.06.2017 / 15:25

1 answer

1

There should be a compatibility between the version of jquery and jquery mobile.

This is an example of the latest version.

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script><scriptsrc="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

More information:

http://jquerymobile.com/download/
    
28.06.2017 / 15:28