1
0
Fork 0
forked from OpenNeo/impress
impress/app/assets/javascripts/fundraising/donations/show.js

7 lines
175 B
JavaScript
Raw Normal View History

2014-09-09 21:16:02 -07:00
(function() {
$('span.choose-outfit select').change(function(e) {
var select = $(this);
select.closest('li').find('input[type=text]').val(select.val());
});
})();