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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:03:16+00:00 2026-06-03T03:03:16+00:00

Since I did a change : Rewrite an asp.net mvc ajax actionlink as a

  • 0

Since I did a change : Rewrite an asp.net mvc ajax actionlink as a jquery/ajax statement
the following code does not offer anymore a smooth fade in/out animation when I click one of those three links: Why is
That ?

        function OnBeginStuff() {
            $("#StuffPanel").fadeTo("slow", 0.50);
        }
        function OnCompleteStuff() {
            $("#StuffPanel").fadeTo("slow", 1.00);
        }

        $(document).ready(function () {

            $('.mainLink', $('#NavigationPanel')).click(function (e) {
                e.preventDefault();
                $.ajax({
                    url: $(this).attr('href'),
                    beforeSend: OnBeginStuff,
                    complete: OnCompleteStuff,
                    success: function (html) {
                        $('#StuffPanel').html(html);
                    }
                });
            });
        });
    </script>    
</head>
<body>
    <div id="NavigationPanel">
        @Html.ActionLink("1", "Index", "One", null, new { @class = "mainLink" })
        @Html.ActionLink("2", "Index", "Two", null, new { @class = "mainLink"  })
        @Html.ActionLink("3", "Index", "Three", null, new { @class = "mainLink" })    
    </div>
    <div id="StuffPanel">
        @RenderBody()
    </div>
</body>
</html>
  • 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-03T03:03:17+00:00Added an answer on June 3, 2026 at 3:03 am

    is there any reason you are using both the #NavigationPanel and .mainLink for binnding the click function.
    try this

    $('.mainLink').click(function (e) {
                    e.preventDefault();
                    $.ajax({
                        url: $(this).attr('href'),
                        beforeSend: OnBeginStuff,
                        complete: OnCompleteStuff,
                        success: function (html) {
                            $('#StuffPanel').html(html);
                        }
                    });
                });
    

    or if you need to use both the selectors then add this line to the click event handler
    e.stopPropagation(); after e.preventDefault(); this way bubbling of the events will be stopped and only single call to ajax and OnBeginStuff and OnCompleteStuff will be sent.

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

Sidebar

Related Questions

It's been a long time since I did any classic asp work, but was
Since Google Can Now Execute AJAX & JavaScript For Indexing , what does that
Due to the change in CSRF-policy for AJAX requests since Django 1.2.5, all implementations
It's been a while since I last did Ruby programming -- looking at somebody
Sorry since this question is specific to my problem. While learning reflections i did
It's been a while since I used GTK+, and the last time I did
When committing changes to already existing files I receive the following error messages since
I typed following code in irb: (1..5).reduce([]){|a,b| p a,b } Expected results would be:
I observed something last week that I did not expect, and will describe below.
Environment: JSF 1.2 RI, RichFaces 3.3.2 We utilize jQuery for is to change CSS

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.