Показать сообщение отдельно
  #4 (permalink)  
Старый 30.11.2014, 11:23
Аватар для bes
bes bes вне форума
Профессор
Отправить личное сообщение для bes Посмотреть профиль Найти все сообщения от bes
 
Регистрация: 22.03.2012
Сообщений: 3,744

krutoy, доделай до рабочего
<body onbeforeunload="return 'are you sure you want to exit'">
<input />
<form>
<div style="display: none">
	<input type="submit"/>
	TEXT
</div>
</form>

<script>
get=document.querySelector.bind(document)
input=get("input")
div=get("div")
input.onfocus=function(){
   div.style.display="block"
}
input.onblur=function(){
   div.style.display="none"
}
</script>


<body onbeforeunload="return 'are you sure you want to exit'">
<input />
<form>
<div style="_display: none">
	<input type="submit"/>
	TEXT
</div>
</form>

<script>
get=document.querySelector.bind(document)
input=get("input")
div=get("div")
input.onfocus=function(){
   div.style.display="block"
}
input.onblur=function(){
   div.style.display="none"
}
</script>
Ответить с цитированием