Skip to content

Instantly share code, notes, and snippets.

@Jasperswaagman
Created January 28, 2014 11:02
Show Gist options
  • Save Jasperswaagman/8665707 to your computer and use it in GitHub Desktop.
Save Jasperswaagman/8665707 to your computer and use it in GitHub Desktop.
get request
updateAllergies: function(id) {
var ids = $("#profileCreateForm input:checkbox:checked").map( function() {
return $(this).val();
}).get();
$.post(url+'case=insertAllergies', {'ids': ids, 'user_id': id});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment