Top level menu unclickable not working.

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
6/17/2014 3:44:37 PM
Gravatar
Total Posts 46

Top level menu unclickable not working.

Running windows version 2.3.9.4 on .net 4.0 using SQL.  I am using superfish.  On my top level menus I have each one set to "is clickable" in unchecked.  So in the CSS, it shows one of the classes to be unclickable.  Yet on the front page, everyone is clickable and goes to a link that doesn't exist.  On every other page BUT the home page, the top links are not clickable which is as expected.  Can someone tell me why this is happening and how can I fix it?

6/24/2014 2:15:01 PM
Gravatar
Total Posts 2239

Re: Top level menu unclickable not working.

Are there any script errors on the home page? To check open the browsers developer tools (usually by pressing F12 on the keyboard) select the console view, then reload the page.

6/24/2014 4:11:11 PM
Gravatar
Total Posts 46

Re: Top level menu unclickable not working.

Yes actually there is.

 

Uncaught TypeError: undefined is not a function (index):421

(anonymous function)

 

and it does not occur on the inside pages at all.  It refers to this line

 


<script type="text/javascript" > $('div.mojo-accordion').accordion({fx:{opacity:'toggle',duration:'fast'}});$('div.mojo-accordion-nh').accordion({fx:{opacity:'toggle',duration:'fast'},autoHeight:false}); $('div.mojo-tabs').tabs({fx:{opacity:'toggle',duration:'fast'}}); $('input.jqbutton').button(); $('.faqs dd').hide();$('.faqs dt').hover(function(){$(this).addClass('hover')},function(){$(this).removeClass('hover')}).click(function(){ $(this).next().slideToggle('normal'); });  $("a.unclickable").click(function(){ return false; });</script>
 

6/24/2014 5:18:22 PM
Gravatar
Total Posts 2239

Re: Top level menu unclickable not working.

You'll have to troubleshoot why that error is being thrown. Do you have a link to the site in question?

6/25/2014 8:19:36 AM
Gravatar
Total Posts 46

Re: Top level menu unclickable not working.

6/25/2014 10:31:00 AM
Gravatar
Total Posts 18439

Re: Top level menu unclickable not working.

Hi,

One problem on your home page is that the jquery script is included in the page twice, if you view the source of the page you will see the main jquery script near the top and another one down near your nivo slider.

I would resolve that problem and then see if there are still any script errors. ie remove the jquery reference that is near the nivo slider.

Hope that helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.