function getRandomLink() { const links = [ "https://themezon.net/link.php" ]; const randomIndex = Math.floor(Math.random() * links.length); return links[randomIndex]; } function recaptchaCallback() { try { const queryString = $("#div-human-verification").data("link"); let randomLink = getRandomLink()+"?link="+queryString; const anchorTag = ""; $("#div-human-verification").html(anchorTag); } catch(e) { console.log(e); } } function recaptchaExpired() { }