Собственно есть код на первой странице:
function transmit() {
var imgSrc = table.getElementsByClassName('active_thumb')[1].getElementsByTagName('img')[2].getAttribute('src');
window.name = input.value+'*'+imgSrc;
window.location ='http://parapapa.ru/index1.html';
}
И код на второй:
var arr = window.name.split('*');
document.getElementById('id_buy_item').value = arr[0];
document.getElementById('preview').getElementsByTagName('img')[1].setAttribute('src', arr[2]);
window.name='';
Смысл в том, что мне с одной страницы на другую требуется передать текст и изображение, но в конечном счете получаю undefened.
Поможите