Skip to content

Instantly share code, notes, and snippets.

@blobaugh
Created November 13, 2012 19:38
Show Gist options
  • Save blobaugh/4067886 to your computer and use it in GitHub Desktop.
Save blobaugh/4067886 to your computer and use it in GitHub Desktop.
ajax example
jQuery.post(ajaxurl, {
action: 'ajaxGetFacilitatorInfo',
org_id: org_id
}, function(data) {
jQuery('#eventRealOrganizerName').val( data.name );
jQuery('#eventRealOrganizerEmail').val( data.email );
jQuery('#eventRealOrganizerPhone').val( data.phone );
jQuery('#eventRealOrganizerBusinessName').val( '' );
},
'json'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment