Dear all,
I dont know why but my bottum menu is not working anymore.
I have try all but when I click on a link I see only javascript: void(0)
How I can fix it?
Dear all,
I dont know why but my bottum menu is not working anymore. I have try all but when I click on a link I see only javascript: void(0)
How I can fix it? |
Look in your browser error console for JS errors. Have you added anything new recently that required adding any js code to the header? Geeks, making the world a better place |
I have added a lot, bute I dont know how I can look.
The console bring no fault.
Something else what I can do? |
In the consol I see this:
|
When you are adding in javascript/jquery code, you should test after adding on all the pages, menus etc. What you can do is to comment out the JS code you have added and then clear caches etc. By the way, try first turning off the JS cache/compression in the back end and then clear the /cache /cache_public and in the back end under tools cache. Sometimes the JS cache/compression will screw up code and prevent it from working. If turning off JS cache/compression does not fix it, then turn your attention to the code you added. Comment out each set of scripts and enable one by one checking for when it breaks. Example: <script> That will prevent the script code from running as it turns it into a comment. Geeks, making the world a better place |