Possible Duplicate:
jquery disable a button for a specific time
I am using PHP to create a website.
On that website, I would like to have a button that the user can only click once every five minutes.
I have already determined that I will be using jQuery for this scripting, and I know that I will need to set a timeout period of five minutes after the user clicks the button. During this timeout period, the button should not be able to be clicked.
What is the process that I should use to enable this functionality?
Best Regards