I am trying to get the selected value from an event.
I don't know which method to get this value. Any suggestions ?
//update item quantity
cartList.on('change', 'select', function (event) {
var row = $(event.target).parents('.product');
updateItemQuantity(row.data('row_id'), QUANTITY_IS_SELECTED_VALUE);
quickUpdateCart();
});