// external link speedbump $.expr[":"].external = function (a) { var excludeHosts = [""]; excludeHosts.push(location.hostname); // Do not match the following: Email Links, Telephone Links, and the Hostname Array return ( a.hasAttribute('href') && !a.href.match(/^\s+$/) && !a.href.match(/^#+$/) && !a.href.match(/^mailto\:/) && !a.href.match(/^tel\:/) && !(a.href.indexOf("edd.ca.gov") > -1) && !(a.href.indexOf("localhost") > -1) && true ); }; var linkBuffer; $(document).on('click', 'a:external', function (e) { e.preventDefault(); console.log($(this).attr('data-target')) if ($(this).attr('data-target') =="#languageChoice") { $("#languageChoice").modal('show'); //$(".modal-backdrop.show").show(); } else { linkBuffer = $(this).attr('href'); $("#siteleavingModal").modal('show'); $(".modal-backdrop.show").show(); $("#leavingwebsiteurl").click(function () { document.location.href = linkBuffer; }); } return false; });