JourneyJoker/static/auction/js/offer-selection.js
2021-04-20 13:37:36 +02:00

6 lines
No EOL
177 B
JavaScript

$(".accept-button").click(
function() {
$("#id_offer").val($(this).attr("data-offer-uuid"));
$("#hotel_name").text($(this).attr("data-offer-name"));
}
);