Ajax

(php) = can't run off local file

Insert with no post back redirect to new page (php)

uid_key
email
first_name
last_name
ethnicity




Show Menu based on selection (php)

Which category are you interested in?



Auto suggestion

Infinite scrolling

Asynchronous Button

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