Magento – Magento2 site is not loading properly

consolejavascriptmagento2PHP

http://i.stack.imgur.com/Q05dv.jpg

  1. I have Magento2 site. When I load first time in the browser it's not loading.

  2. Complete and show javascript error in the console but when I refresh, it shows correct? What is the issue in Magento 2

Best Answer

Last error solution:-

Uncaught TypeError: Cannot read property 'timepicker' of undefined

means that

$.ui

is undefined. So, you probably have not included jQuery UI.

Try to include it before any of your scripts (except jQuery itself).

Related Topic