Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8426367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:31:13+00:00 2026-06-10T04:31:13+00:00

I have the a javascript code which close a mwnu with submenu made with

  • 0

I have the a javascript code which close a mwnu with submenu made with ul and li elements.

A submenu is opened and if I click in other region of page or outside of menu, that submenu must be closed.

This script works only in Firefox and Chrome but not in IE.

The JS code:

$(function(){
    $(".item").on("click focusout", function(){
        $(".test").toggleClass("no-display");
    });       


    $(document).on("click", function(e){
        if(!$(".test").hasClass("no-display") && $(e.originalEvent.target).closest(".mega").length === 0) {
            $(".test").addClass("no-display");
        }
    });
});

And HTML code:

<ul class="mega">
    <li>Item1</li>
    <li class='item'>Item2
        <ul class='test no-display'>
            <li>SubItem1</li>
            <li>SubItem2</li>
        </ul>
    </li>
    <li>Item3</li>
</ul>

More better, I provide Jsfiddle to see the issue in action

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T04:31:14+00:00Added an answer on June 10, 2026 at 4:31 am

    Here’s one approach to this which is, I think, simpler:

    $("html").click(function() {
        if(!$(".test").hasClass("no-display")) {
            $(".test").addClass("no-display");
        }
    });
    $(".test").click(function(event) {
        event.stopPropagation();
    });
    $(".item").click(function() {
        $(".test").toggleClass("no-display");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JavaScript code which links to survey poll page. When I am
I have code which returns some other page (Google) in a popup (child) window.
I have JavaScript code which copies the value of input file and paste it
Hi Javascript gurus, I have this Javascript code which is working fine on Firefox
i have this javascript code to which i want to add the jquery fade-in
I have the following JavaScript code which I like to convert to jQuery but
I have a javascript code using which I want to accomplish the following .
I have a working JavaScript code below which dynamically creates JSON object using JSON.parse
I have a very simple JavaScript/jquery code which won't just work correctly. The problem
I have code in javascript which get keycodes of different keys and set it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.