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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:10:25+00:00 2026-05-23T01:10:25+00:00

I’ve looked at this before and found javascript that works for me with Google

  • 0

I’ve looked at this before and found javascript that works for me with Google Chrome, Firefox, and IE when I test it but it seems randomly (or browser specific) it doesn’t work. I need a solution that does work.

This is what I’m currently using with jQuery:

$(document).ready(function () {
    $("a.Once").one("click", function () {
        $(this).click(function () { return false; });
    });
});

I add the class “Once” to buttons I want to make sure aren’t clicked more than once. Again, It always works properly for me but for some users it doesn’t do anything at all. Is there a better alternative solution that always works?

Update: These are ASP.NET LinkButtons.

Update 6/18:
I’ve gotten more info from two users who keeps having this problem.

One says he hits the button once and the screen flashes so he leaves the page and comes back to it and hits the button again which causes it to post twice automatically.

The other claims he hits a different button which causes this button to postback twice automatically. I looked at the code and there’s nothing wrong with that button.

The only thing I can think of is a caching problem or maybe hitting the button before the page finishes loading. I haven’t been able to reproduce the problem and one of them is using the exact same browser I use.

  • 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-23T01:10:26+00:00Added an answer on May 23, 2026 at 1:10 am

    If this is for a form post, then you can disable all submit buttons on submit with:

    
    $('#someForm').submit(function(){
        $('input[type=submit]', this).attr('disabled', 'disabled');
    });
    
    

    Or are they allowed to click more than once, but only after some time has elapsed?

    There are scenarios where one() fails – see the comments on
    http://api.jquery.com/one/
    Any idea if its a browser compat issue with your users or jQuery not loading?

    EDIT:
    Just found out this is a linkbutton. in that case try

    
    $('#yourClientIdForYourLinkButton').click(function(e) {
        e.preventDefault();
    });
    
    

    or using the clientid directly something like

    
    $('#<%=linkButton.ClientId%>').click(function(e) {
        e.preventDefault();
    });
    
    
    • 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.