!!!!!!!! Работа с iframe на JS.Просьба о помощи
function get(iframe) {
var doc=iframe.contentDocument;
if (!doc && iframe.contentWindow) doc=iframe.contentWindow.document;
if (!doc) doc=window.frames["frameId"].document;
if (!doc) return 'errorout';
if (doc.location=="about :blank") return 'errorout';
return doc;
}
var iframe = document.getElementById("frameId");
if(!iframe && frames["frameId"]) iframe = frames["frameId"];
var ifr = get(iframe);
var echo = ifr.images[0].src;
document.write(echo);
//document.write(ifr.getElementById('captcha_img').src);