Frameless Popup Window...simple code

wxdqz

New Member
Hey everyone...the board is nice and I'm sure I'll get comfortable hanging around here learning some new skills. But for now I have objective I'm trying to figure out, the code is pretty simple:

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Testing</title>

</head>

<BODY onload="myfunction()">

<script LANGUAGE=JavaScript>

function myfunction()
{
window.resizeTo(350,200);
window.moveTo(450,150);
}
</script>

TestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTe stingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTestingTest ingTestingTestingTestingTestingTestingTestingTestingTesting</body>

</html>


This window will automatically launch when I preview it in the browser...well I want it to be frameless...I have seen the frameless script out there...and I dont need all that code for this to work...its something simple that I am missing. I also need it to resize on its own, for example if there was a picture that was 437 x 213...then the window will automatically go to that size etc...

Can someone help me out please, in the meantime I will be researching the problem, I appreciate it. Thanks.

Fred
 
Back
Top