Results 1 to 10 of 10
Thread: JavaScript
Hybrid View
-
9th February 2009 10:10 #1
JavaScript
.
, . , . .
!Code:<html> <head> <title>Link</title> <style> a { color: 6666CC; text-decoration: none; } a:visited { color: 6666CC; text-decoration: none; } </style> </head> <body> <a href="http://google.com" target="_blank">LINK</a> </body> </html>Last edited by rumen_33; 9th February 2009 at 10:16.
|Asus P5K Premium WiFi|Intel C2D E6750|Kingston 2x1GB@667MHz|Seagate 250GB+500GB|Coolmax CP 500W|Asus EN 8800 GTS 320MB|
-
9th February 2009 13:50 #2
Join Date: Apr:2006
Location:
Posts: 8,666
onClick=Maximize() < Maximize() onClick-a <a href...
window.resizeTo(screen.width,screen.heig ht);Last edited by smelkomar; 11th February 2009 at 11:35.
-
11th February 2009 10:53 #3
. ! , . , . C++ / , JS .
|Asus P5K Premium WiFi|Intel C2D E6750|Kingston 2x1GB@667MHz|Seagate 250GB+500GB|Coolmax CP 500W|Asus EN 8800 GTS 320MB|
-
11th February 2009 11:35 #4
Join Date: Apr:2006
Location:
Posts: 8,666
http://www.w3schools.com/htmldom/met_win_resizeto.asp
resizeWindow() Maximize()
-
12th February 2009 19:59 #5
. , . , , resizeTo(), . , (0, 0), maximize() . :
, , , , , .Code:function maximize_screen() { window.moveTo(0, 0); window.resizeTo(screen.availHeight, screen.availWidth); }
, .|Asus P5K Premium WiFi|Intel C2D E6750|Kingston 2x1GB@667MHz|Seagate 250GB+500GB|Coolmax CP 500W|Asus EN 8800 GTS 320MB|
-
12th February 2009 20:58 #6
.
, , , .
:
(, "", ).Code:<script language="JavaScript"> window.moveTo(0,0); window.resizeTo(screen.width,screen.height); </script>
Hey, mother, I come bearing a gift. I'll give you a hint. It's in my diaper and it's not a toaster.
.
-
13th February 2009 09:00 #7
:
.Code:<html> <head> <title>Link</title> <style> a { color: 6666CC; text-decoration: none; } a:visited { color: 6666CC; text-decoration: none; } </style> <script language="JavaScript"> function resize() { window.moveTo(0,0); window.resizeTo(screen.height,screen.width); } </script> </head> <body> <a href="http://google.com" target="_blank" onClick="resize()">LINK</a> </body> </html>|Asus P5K Premium WiFi|Intel C2D E6750|Kingston 2x1GB@667MHz|Seagate 250GB+500GB|Coolmax CP 500W|Asus EN 8800 GTS 320MB|
-
13th February 2009 10:42 #8
, .
JS- , .
... , JS- ... target="_maximixed" . , .
?
FF . IE ...Hey, mother, I come bearing a gift. I'll give you a hint. It's in my diaper and it's not a toaster.
.
-
13th February 2009 11:18 #9
. . IE. position .
Code:<html> <head> <title>Link</title> <style> a { color: 6666CC; text-decoration: none; } a:visited { color: 6666CC; text-decoration: none; } </style> <script> function openPopUp(url) { var params = 'width=' + screen.width; params += ', height=' + screen.height; params += ', top=0, left = 0' params += ', fullscreen = yes'; var newwin = window.open(url,'Window Name Here', params); if (window.focus) { newwin.focus() } return false; } </script> </head> <body> <a href="http://google.com" target="_blank" onClick="openPopUp('http://www.google.com')">LINK</a> </body> </html>|Asus P5K Premium WiFi|Intel C2D E6750|Kingston 2x1GB@667MHz|Seagate 250GB+500GB|Coolmax CP 500W|Asus EN 8800 GTS 320MB|
-
17th February 2009 10:55 #10Registered User
Join Date: Jul:2005
Location: Sofiq
Posts: 2,798
IE
IE href onclick. href IE. . newwin , .




Reply With Quote
Lenovo ThinkPad 15 IdeaPad 15
5th May 2023, 22:16 in