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 8019373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T21:22:23+00:00 2026-06-04T21:22:23+00:00

hey i have a jquery function that is triggered on an anchor’s onclick event

  • 0

hey i have a jquery function that is triggered on an anchor’s onclick event the function is as follows:

function dropDown(subid, e) {
 e.preventDefault();
 var sub = '#' + subid;
 // hide all submenus first
 $('.subnav').css({'display' : 'none'});
 //Show the Current Subnav 
 $(sub).css({'display' : 'block'});
}

this is how i am tring to trigger it :

<a href="#!" onclick="dropDown('sn_cities')" >Cities</a>

However i am getting this error: e is undefined

i want to cancel the default onclick event of the anchor link, any help would be appreciated.

  • 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-04T21:22:24+00:00Added an answer on June 4, 2026 at 9:22 pm

    You’re not passing the event object (or anything at all) to the e parameter of the function. Try this:

    onclick="dropDown('sn_cities',event);"
    

    I’d be inclined to lose the inline JS altogether though:

    <a href="#!" data-dropDown="sn_cities">Cities</a>
    
    $(document).ready(function() {
    
        $("a[data-dropDown]").click(function(e) {
           e.preventDefault();
           // hide all submenus first
           $('.subnav').hide();
           //Show the Current Subnav 
           $('#' + $(this).attr("data-dropDown")).show();
        });
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guys I have an ajax jquery function that receives data from a php
Hey we have a library class (lib/Mixpanel) that calls delayed job as follows: class
Hey I have code that wires up the tabs in the Ready function for
jQuery('ul#reorderps ul ul li').mouseover( function(){ jQuery(this).css(cursor,pointer); var position= jQuery(this).position(); jQuery(#up).click(function() { alert('hey'); }); }
hey everyone, here is the site SEE BELOW I have a slight jquery problem
hey people I'm new at jquery and i have been trying to figure this
Hey I have a really annoying IE7 bug that I am trying to work
Hey - I have the following method on my UITableView controller public void RemoveEventFromList(Event
Hey there, I have a page with the jQuery Draggable() enabled on #person and
Hey guys, I have a bit of a problem that I can't solve. I'm

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.