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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:06:34+00:00 2026-05-17T21:06:34+00:00

I am attempting to implement the suckerfish menu found on this tutorial. I get

  • 0

I am attempting to implement the suckerfish menu found on this tutorial. I get “object expected” error from the sample javascript:

    $(document).ready(function () {
        $("#nav-one li").hover(
            function () { $("ul", this).fadeIn("fast"); },
            function () { }
        );
        if (document.all) {
            $("#nav-one li").hoverClass("sfHover");
        }
    });

I have imported the JQuery using:

<script type="text/javascript" src="~/Scripts/jquery-1.4.1.js"></script>

The JQuery import is in the page header. The javascript is just inside the <body>.
It would be nice if I could tell which object is having the issue instead of being pointed at this block of code. I’m new to JQuery and beginner level javascript.

UPDATE
The start of the menu:

<ul id="nav-one" class="nav">
            <li>
                <a href="#item1">item 1</a>
                <ul>

(I think the #nav-one points to the id of the menu “nav-one”).

And I believe this css covers the “sfHover” part:

#nav-one li.sfHover a {
  background: #ccc;
  color: #000;
}
  • 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-17T21:06:34+00:00Added an answer on May 17, 2026 at 9:06 pm

    The ‘object expected’ error can occur when you are not including jQuery correctly. Do you have that ‘jquery-1.4.1.js’ file in the directory the src attribute is pointing to?

    To test if this is the problem, try replacing your jQuery include with this:

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    

    That will request jQuery from Google’s servers.

    Edit:

    If I use your example code and the jQuery include I mentioned above, I don’t get that error. But you’ll also need to include the

    $.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
    };
    

    part from your example. That defines hoverClass as a jQuery method (it is not part of that standard jQuery library).

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

Sidebar

Related Questions

No related questions found

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.