user12133523
user12133523

Reputation:

Menu button can not be clicked on mobile

I've used Ruby menu in my website from this example:

It works fine on desktop.

But it is not working on mobile devices (Button can not be clicked). The console shows an error that it is failed to load 3 js files:

http://brienlabs.com/ruby-mega-menu/js/ruby-main.js

http://brienlabs.com/ruby-mega-menu/js/jquery-3.1.0.min.js

http://brienlabs.com/ruby-mega-menu/js/ruby-demo.js

I tried to add those 3 files on my site but it is still not working and shows me below errors.

Loading failed for the <script> with source “https://brienlabs.com/ruby-mega-menu/js/jquery-3.1.0.min.js”. index.html:2779:1
Loading failed for the <script> with source “https://brienlabs.com/ruby-mega-menu/js/ruby-demo.js”. index.html:2779:1
Loading failed for the <script> with source “https://brienlabs.com/ruby-mega-menu/js/ruby-main.js”.

Please, can anyone assist me? Thank you in advance.

Upvotes: 1

Views: 174

Answers (1)

ht13
ht13

Reputation: 633

You have this “, but it'll be ". Those are different from each other. Please check it. I hope it'll work.

Wrong

“https://brienlabs.com/ruby-mega-menu/js/jquery-3.1.0.min.js”

Correct "https://brienlabs.com/ruby-mega-menu/js/jquery-3.1.0.min.js"

Upvotes: 1

Related Questions