refund.js 276 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 define(function(require, exports, module) { $(function() { $('.m-select').on('change', 'select', function() { var text = $(this).find(':selected').text(); $(this).closest('.m-select').find('.select-text').text(text); }); }); });