add_action( 'give_donation_form', function() { ?>
//add script tag here
let searchParams = new URLSearchParams(window.location.search);
// Change the parameter name here
let name = searchParams.has('animal_name') ? searchParams.get('animal_name') : '';
// Change the target variable here
jQuery("input[name='In sponsorship of']").prop("value", name);
//close script tag here
