Skip to content

Instantly share code, notes, and snippets.

View charddude's full-sized avatar

Richard King charddude

View GitHub Profile
@charddude
charddude / ajax.js
Last active August 29, 2015 14:04
Simple tracking plugin for WordPress
// Tracking JQuery call
function submit_me(){
jQuery.post(the_ajax_script.ajaxurl, jQuery('#theForm').serialize()
,
function(response_from_tracking_function){
jQuery("#response_area").html(response_from_tracking_function);
}
);