Сообщение от debugx
|
не получается присвоить диву нужную позицию
|
Так вроде это не сложно...
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
#container {
width: 200px;
height: 200px;
border: 1px solid;
}
#win {
position: absolute;
display: none;
background: orange;
}
</style>
<script type="text/javascript">
function Go() {
var o=document.getElementById('win')
o.style.display='block'
o.style.top=Math.random()*200+'px'
o.style.left=Math.random()*200+'px'
}
</script>
</head>
<body>
<div id='container'></div>
<input type='button' value='Go' onclick='Go()' />
<div id='win'>
<p>Test</p>
</div>
</body>
</html>