/* click out to tube */ jQuery(function(){ jQuery(document).on('click', ".thumbv", function(e){ e.preventDefault(); let urlgo = jQuery(this).find('a').attr('href'); if(urlgo){ // make a fetch for buran fetch(urlgo); spurl = jQuery(this).find('a').attr('data-url') + '?' + utmObject(true); console.log(spurl); window.open(spurl, '_blank'); } return false; }); });