Hopperjobs.com needs your help.

In order to keep our website alive, we are asking you to support us with a small donation (10 EUR). 100 % of the amount we receive through Paypal will be invested in to website hosting and development as well as editorial expenses.

Your support makes a REAL difference, thank you in advance for Your help!

function initPayPalButton() { paypal.Buttons({ style: { shape: ‘pill’, color: ‘blue’, layout: ‘vertical’, label: ‘donate’, }, createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{“description”:”Support for hopperjobs.com”,”amount”:{“currency_code”:”EUR”,”value”:10,”breakdown”:{“item_total”:{“currency_code”:”EUR”,”value”:10}}},”items”:[{“name”:”item name”,”unit_amount”:{“currency_code”:”EUR”,”value”:10},”quantity”:”1″,”category”:”DONATION”}]}] }); }, onApprove: function(data, actions) { return actions.order.capture().then(function(orderData) { // Full available details console.log(‘Capture result’, orderData, JSON.stringify(orderData, null, 2)); // Show a success message within this page, e.g. const element = document.getElementById(‘paypal-button-container’); element.innerHTML = ”; element.innerHTML = ‘

Thank you for your payment!

‘; // Or go to another URL: actions.redirect(‘thank_you.html’); }); }, onError: function(err) { console.log(err); } }).render(‘#paypal-button-container’); } initPayPalButton();