Ajax
(php) = can't run off local file
Insert with no post back redirect to new page (php)
uid_key | |
first_name | |
last_name | |
ethnicity | |
Show Menu based on selection (php)
Which category are you interested in?
apply style based on dom click
If an ajax request is already in progress don't fire another one
var request_in_progress = false;
In your function add
if(request_in_progress) { return; }
request_in_progress = true;
At the end of your function add
request_in_progress = false;
NEW TOPIC Template