(function($){
var lastSource = '';
// 1. Track which button was clicked
$(document).on('click', '.open-lead-popup', function(){
lastSource = $(this).data('source') || $(this).text().trim() || 'Unknown source';
});
// 2. When the popup opens, insert that value into the form
$(window).on('elementor/popup/show', function(event, id){
var $popup = $('#elementor-popup-modal-' + id);
$popup.find('input[name="form_fields[source]"]').val(lastSource);
});
})(jQuery);