<script>
$( document ).ready(function() {
var linkMass = {
'art-790':'https://link1.com',
'art-870':'https://link2.com',
'art-920':'https://link3.com',
'art-973':'https://link4.com'
};
var oldLink = '';
function findProduct(){
var cProduct = $('.t706__product').length;oldLink='';
$('input[name="location"]').val('');
let k = 1;
for (let i = 0; i < cProduct; i++) {
var artPrd = $.trim($('.t706__product-title:eq('+i+') div:last').html());
if(linkMass[artPrd] != undefined) {
oldLink = oldLink+'\n'+(k)+') '+linkMass[artPrd];k++;
};
};
if(oldLink.length) {
$('input[name="location"]').val('Ссылки на видео: '+oldLink);
}else{
$('input[name="location"]').val('>');
};
};
//При клике на кнопку в корзине
$('.t706 .t-submit').click(function(e) {e.preventDefault();findProduct();
setTimeout(function(){$('input[name="location"]').val('');}, 10000); });
$(document).on("keydown", ".t706 form", function(event) {return event.key != "Enter";});
});
</script>