jQuery(document).ready(function($){
$('.request-quote-btn').click(function(e){
e.preventDefault();
// Get the product title
var productTitle = $(this).data('product-title');
// Fill it into the hidden field
$('#product-name-field').val(productTitle);
// Open Popup Maker popup (replace 123 with your popup ID)
PUM.open(5009);
});
});