absolute page size using javascript
-
how i can make the absolute page size using javascript. i mean when it opened, the window size will be in that size.:suss: thanx >>teaching is also learning.<<
-
how i can make the absolute page size using javascript. i mean when it opened, the window size will be in that size.:suss: thanx >>teaching is also learning.<<
You do:
window.open("YOUR_URL.HTM","_blank","width=300,height=300");
you can replace the 300 value with whatever you want. |---------------| | theJazzyBrain | |---------------| -
You do:
window.open("YOUR_URL.HTM","_blank","width=300,height=300");
you can replace the 300 value with whatever you want. |---------------| | theJazzyBrain | |---------------|thanks:cool:
-
thanks:cool:
You can try this to always open the window in full screen. window.open('index.html','','top=0,left=0,height=' + screen.availHeight + ',width=' + screen.availWidth); cheers :) Written on a gravestone: Hear lies a father of 29. He could have had more but he didn't have the time!