Привет
.Исправте ошибку.Не получается отправить данные
1 страница
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<script>
function send(){
mes=document.getElementById('sender').value
window.postMessage(mes,'*')
}
</script>
</head>
<body>
<form>
<input type="text" id="sender" />
<input type="submit" value="submit" onclick="send()" />
</form>
</body>
</html>
2 страница
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<script>
</script>
</head>
<body>
<p></p>
<script>
function loader(e){
document.getElementsByTagName('p')[0].innerHTML=e.data
}
window.addEventListener('message',loader,false)
</script>
</body>
</html>
.Буду благодарен за помощь