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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:04:58+00:00 2026-06-14T15:04:58+00:00

Hi i am trying to fix a bug on this plugin for wordpress I

  • 0

Hi i am trying to fix a bug on this plugin for wordpress I am using. The functions looks like this

function alter_ul_post_values(obj, post_id, ul_type) {
    jQuery(obj).find("span").html("..");
    jQuery.ajax({
        type: "POST",
        url: "<?php  echo get_template_directory_uri() ."/includes/ajax_counter.php";?>",
        data: "post_id="+post_id+"&up_type="+ul_type,
        success: function(msg) {
            jQuery(obj).find("span").html(msg);
        }
    });
}

and to call the function and count the click comes this line!

<span class='ul_dcont' onclick=\"alter_ul_post_values(this,'$post_id','wpt2_dislikes')\" >".$text."(<span>".  $dislike_nr ."</span>)</span>

Now if you click fast (multiclick) over the span it will count all clicks. I want to limit this to one click because the cookie is created after the click and doesn’t allow any more clicks to be counted!

Thank you!

  • 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-14T15:05:00+00:00Added an answer on June 14, 2026 at 3:05 pm

    The easiest way is to create global variable. It is not very cute way, but simple and effective.

    var isProcessing = false;  // <- 1
    
    function alter_ul_post_values(obj, post_id, ul_type) {
        if (isProcessing)      // <- 2
            return;            // <- 3
    
        isProcessing = true;   // <- 4
        jQuery(obj).find("span").html("..");
        jQuery.ajax({
            type: "POST",
            url: "<?php  echo get_template_directory_uri() ."/includes/ajax_counter.php";?>",
            data: "post_id="+post_id+"&up_type="+ul_type,
            success: function(msg) {
                jQuery(obj).find("span").html(msg);
                isProcessing = false;  // <- 5
            }
        });
    }
    

    The other option is to change span to input type="button", set disabled attribute on click and remove it on callback.

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

Sidebar

Related Questions

I'm trying to fix a bug in this code that was made for windows
I'm trying to fix a bug with a site search function and have isolated
I am trying to figure out how to fix this bug that only occurs
I am trying to apply this bug fix http://code.google.com/p/selenium/source/detail?r=11856 to the selenium-server-standalone-2.0b3.jar. Does anyone
I'm trying to fix a bug in a rich text editor I'm using, which
There is this weird bug in my program that I'm trying to fix, but
I've been trying to fix this bug of mines for about 3 hours now,
I am trying to fix a bug on an ActiveX control. Is it possible
I've been trying to fix a bug in the Rails app I'm developing, and
Possible Duplicate: Java float division precision I'm trying to fix a bug in one

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.