Сообщение от igrok
|
нет нет, не этот фокус...
|
У меня и такой работает...
tmp.html
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
</style>
<script type="text/javascript">
var wtest
function OpenWin() {
wtest=window.open('tmp1.html')
}
function Go() {
wtest.focus()
}
</script>
</head>
<body onload='document.getElementById("test").focus()'>
<input type='button' value='Open window' onclick='OpenWin()' />
<input type='button' value='Focus window' onclick='Go()' />
</body>
</html>
tmp1.html
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
</style>
<script type="text/javascript">
</script>
</head>
<body>
<p>Test</p>
</body>
</html>