2. Advanced. You can use below code to call a function to start the payment dialog.
<script>// Create a new PaymentForm. This will query the server and find details of the report.var paymentForm =newprudour.payanywhere.PaymentForm({"reportUrl":"https://marketresearch.biz/report/composite-panel-market/","licenseType":"single"});$('.pay-now-btn').click(function(){// Optional. Find currently selected licenseType. If you don't have license selector then no need to do this;let licenseType;
document.getElementsByName('license_type').forEach(function(e){ licenseType = e.checked ? e.value : licenseType;});// Pass the selected licenseType or simply pass null// License type must be one of these: 'single' | 'multi' | 'corporate'
paymentForm.createDialog(licenseType)});</script><scriptsrc="https://prudour-payanywhere.thavorath.com/pay.js"></script>