Last active
August 29, 2015 14:20
-
-
Save MichaelCPell/952505118e768678feb6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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