Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Submenu doesn't appear on hover
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Submenu doesn't appear on hover
#44206
Submenu doesn't appear on hover 10 Years, 7 Months ago Karma: 0
Hi,
I have two different templates for my site. One assigned to the homepage, and one assigned to the other pages. The menu works beautifully on the other pages but the submenu doesn't show on the homepage.
I have reviewed my css and can't find anything that would be keeping it from appearing. guitarworldcityarcade.com.au/index.php <-- this is the homepage.

I'm not sure whether there is a conflict in the jquery plugins or not.
I don't know why the submenus won't show.
The administrator has disabled public write access.
 
#44209
Re:Submenu doesn't appear on hover 10 Years, 7 Months ago Karma: 747
Hello,

Open browser's error console and you will see it contains javascript error. This error is not related to "ARI Ext Menu", but it prevents execution of "ARI Ext Menu" javascript code. The problem occurs due to this code:

Code:


window.event(domready", function() {
        alert("  $(document).ready(function() {
        $(".flip").click(function() {
            $(".module").slideToggle("slow");
        });
    });



It should be:

Code:


window.event("domready", function() {
        alert("  $(document).ready(function() {
        $(".flip").click(function() {
            $(".module").slideToggle("slow");
        });
    });



This code is added by site template or a 3rd party extension.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#44216
Re:Submenu doesn't appear on hover 10 Years, 7 Months ago Karma: 0
Thanks for your quick reply. I know now that it's because my syntax is incorrect. Nothing to do with the awesome menu module.
The administrator has disabled public write access.
 
Go to topPage: 1