Skip to content

Instantly share code, notes, and snippets.

@MichaelCPell
Last active August 29, 2015 14:20
Show Gist options
  • Save MichaelCPell/952505118e768678feb6 to your computer and use it in GitHub Desktop.
Save MichaelCPell/952505118e768678feb6 to your computer and use it in GitHub Desktop.
This expects an input like:
<select data-id=<%= ri.id %> ...other stuff...></select>
$(".some-input").change(function(){
var ri_id = $(this).data('id')
data = {
amount : $(this).val()
}
$.post("/recipe_ingredients/"+ri_id, data, function(data){
// this gets called if the function succeeds
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment