Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a PHP-based web application that monitors the status of a process and displays a page with that status. Users can click a button on the page to update the status. However, the processing load on my server is heavy enough that updating the status too frequently is undesirable. So I want a way to limit someone to one click per minute on the Submit button (which refreshes the status displayed on the page). For example, if someone clicks the button at 12:00:00, they should not be able to click it again until 12:01:00.

After a click on the button, I would like to perhaps disable the button and re-enable it after one minute has passed - that's my preferred solution.

Thank you very much.

share|improve this question

5 Answers

up vote 2 down vote accepted

wtf... people is jQuery addicted.

<input id="btn" type="button" value="click me" onclick="doSomething();"/>

<script>
function doSomething() {
  document.getElementById("btn").disabled=true;
  setTimeout('document.getElementById("btn").disabled=false;',60000);
  // do your heavy stuff here
}
</script>
share|improve this answer
1  
@Pedro It's because many of us have been so burned by wasted hours trying to get the most simplest of scripts to run cross-browser that we never want to have to deal with it again. jQuery isn't perfect, but it (and all the similar frameworks) offer a layer of abstraction that allows developers to focus on what they're doing and not what the particular quirks of Browser X are. – T. Stone Oct 12 '09 at 5:49
Agree. But there's no jQuery tag in the question. And if people learn a little plain javascript, 90% of jQuery questions in SO wouldn't exist – Peter Oct 12 '09 at 8:13
Agreed with Pedro. Great answer! Simple. – Ramiz Uddin Oct 12 '09 at 9:57
Pedro, thanks alot.. :-) – Firdi Sep 12 '10 at 21:32

Just a suggestion, but if you're going to go through the trouble to write the code to rate-limit the submit button by using a client-side timer (setTimeout), why not just remove the update button all together, and make the page auto-update at your pre-defined interval?

Here's some sample code in jQuery (since jQuery offers some great cross-browser AJAX support)

<html>
<head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <scrypt type="text/javascript">
    $(function(){
        // On page load...
        updateStatus();
    })

    function updateStatus(){
        $('#status').load('/url/to/status/display.php');
        setTimeout(updateStatus, 60000) // 60,000 miliseconds = 1 minute
    }
    </script>
</head>
<body>

    <div id="status">
        <!-- whatever is in /url/to/status/display.php will be loaded here -->
    </div>

</body>
</html>
share|improve this answer
Hai T.Stone, thank you for your answering, within other words, after I press a button submit, the button must becomes disabled, after passing 1 minute, it becomes enable again. If you do not mind with pure javascript... :D . thank you very much T.Stone.. – Firdi Oct 11 '09 at 9:29

To do this pure javascript, you can simply capture the click event, disable the button and enable it again after a timeout, the below code is using jQuery and assuming your button has an id 'button' (<button id="button">Click!</button> or if it is an input: <input type='button' id="button">Click!</input>)

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript'>
$('#button').click( function(){
    $(this).attr('disabled', 'disabled');
    setTimeout(enableButton, 1000);
    return true; //make sure default click event happens
});

var enableButton = function(){
    $('#button').removeAttr('disabled');
}
</script>

You say the progress is quite heavy, note that even though people can not press the button more then once a minute (if they have javascript enabled that is) they can still disable javascript and press the button as much as they want, or call the url directly as many times as they feel like.

EDIT Added full HTML to script

share|improve this answer
Hai Pim J, thank you for your answering, I have try your script, but would you give me full/complete script? before this, thank you ver much Pim J. – Firdi Oct 11 '09 at 9:32
+1 for pointing out consequences of JavaScript being disabled. – codingoutloud Jul 27 '12 at 23:46

Use setTimeout.

share|improve this answer

using underscore.js this is as easy as:

var func = _.debounce(function(x) {return x * x}, 60000);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.