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

  • SEARCH
  • Home
  • 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 6176055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:01:58+00:00 2026-05-24T00:01:58+00:00

I have an unordered list (UL) that I’m trying to bind a mouseover/mouseenter event

  • 0

I have an unordered list (UL) that I’m trying to bind a mouseover/mouseenter event on the list item (LI) children using .live() but keep getting the following JavaScript error:

Error: uncaught exception: Syntax error, unrecognized expression: )

Here’s my code:

<ul id="menu">
    <li>option 1
        <ul>
            <li>sub-option A</li>
            <li>sub-option B</li>
            <li>sub-option C</li>
            <li>sub-option D</li>
            <li>sub-option E</li>
        </ul>
    </li>
    <li>option 2</li>
    <li>option 3</li>
</ul>

The jQuery code:

$("#menu").children().live("mouseover", function(){
    // do something
});

The crazy thing is that when I change to the .mouseover() function it works just fine except for the issue with flickering associated with .mouseover() that the .live(“mouseover”, …) fixes.

Am I doing something wrong here? Is this a jQuery bug? Does anyone have any insight into this issue?

  • 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-05-24T00:01:58+00:00Added an answer on May 24, 2026 at 12:01 am

    From the docs:

    DOM traversal methods are not supported for finding elements to send to .live(). Rather, the .live() method should always be called directly after a selector

    Which means you can’t do $("#menu").children().live(...) since .children() is a DOM traversal method.

    Although a syntax error suggests that the code itself is problematic, i.e. not well formatted. As such the problem lies in code you didn’t post.

    Finally, I suggest you just use delegate:

    $('#menu').delegate('li', 'mouseover', function(){ ... });
    

    Although you should really be doing a static bind unless you need live or delegate functionality. It’s not supposed to fix random flickering issues – you’re supposed to debug that yourself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an unordered list that when an item is clicked it displays several
I have an unordered list with elements and I want to append an item
I am currently trying to manipulate a unordered list with jQuery, essentially I have
I have a unordered list that contains <ul id=strip> <li><a href=#><span>This-is a test string</span></a></li>
http://clifgriffin.com/blockade2/ Ok, I have an unordered list that serves as a list of menu
I have a simple unordered list that I want to show and hide on
Let's say I have a nested unordered list that I would like to serialize
How would I do this in mootools? I have an Unordered list items that
I'm having some trouble figuring this out. I have an unordered list menu that
I´m using an unordered list to replace the select function. I have a state

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.