Created
August 6, 2014 07:29
-
-
Save luckyruby/0a5fe1f219d6c6dbf254 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$('#resort_add_on_add_on_id').change (e) -> | |
$("#resort_add_on_add_on_id option:selected").each -> | |
description = $(this).data('description') | |
price = $(this).data('price') | |
pricing = $(this).data('pricing') | |
$("#resort_add_on_description").attr("placeholder", description) | |
$("#resort_add_on_price").attr("placeholder", price) | |
$("#resort_add_on_pricing").val(pricing) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment