Yo, iu need HTML for window open thingy!

I need the html/java script to oepn new window like on this page<br />
<!-- m --><a class="postlink" href="http://channelone.com/life/articles/2003/02/21/se_world/">http://channelone.com/life/articles/200 ... /se_world/</a><!-- m --><br />
click "See the Pics!" so you know wehat an idiot like me is talking about.<!--content-->wow thats the first time i have actually visited channel one's website lol, even tho we watch it everyday! can't you use the 'alert' javascript method?<br />
or are you completely new and have no idea?<br />
btw thats a really nice cave drawing! maybe i should go buy maya? 500 bucks right? lol<!--content-->alert java? I have no idea what it is. <br />
<br />
btw: it was 3d computer art.<!--content-->yeah i know i make 3D games with VB6 sometimes, but the graphics are really crappy. <br />
the code will look like this i believe (never tested it)<br />
<br />
<script language=javascript><br />
alert('URL')<br />
</script><br />
<br />
u may need a few adjustments, tell me specifics if ya need em!<!--content-->I had this code once, but diden't look like this, it was like, stuff added like "resizing="no" "scrolbar="no" etc etc.<!--content-->err, whats a "enter page" pop script "<script language=javascript><br />
alert('it says words and stuff here')<br />
</script>"<!--content-->yeah, i actually recommend VBScript though (as a VB6 programmer) try this(the name and crap can be changed):<br />
<br />
<input type=button name=coolbutton1><br />
<br />
<script language=vbscript><br />
Sub coolbutton1_onClick()<br />
MsgBox"whatever"<br />
End Sub<br />
</script><br />
i think that works lol been a long time!<!--content-->ChannelOne's page uses this script:<br />
<br />
<!-- m --><a class="postlink" href="http://channelone.com/scripts/fbpopup.js">http://channelone.com/scripts/fbpopup.js</a><!-- m --><br />
<br />
which contains a function called popComments(). You can check the HTML source of their page to see how it is used. <br />
<br />
I don't think IsEvil will let you just view a javascript file. Netscape/Mozilla will, though. (IE 5.5 wants to open it with a different application or save it to disk.)<br />
<br />
Should you ever have need to not only pop up the smaller window, but keep it in front as well, it can be done with two short javascript functions. If interested, check out the HTML source on this page:<br />
<br />
<!-- m --><a class="postlink" href="http://dbatitan.home.att.net/vp/visibleLife.html">http://dbatitan.home.att.net/vp/visibleLife.html</a><!-- m --><br />
<br />
I used it as a sort of optional frame. If the user wants to refer to the "frame" while reading other stuff, he can. If not, it doesn't occupy any browser real-estate.<!--content-->ya i was about to post the same thing:banana: :banana: :banana: :banana:<!--content-->try this....<br />
<br />
....HEAD...<br />
<SCRIPT LANGUAGE="JavaScript" type="text/javascript"><br />
<!-- Begin<br />
function url() {<br />
hidden = open('PIC OR PAGE NAME','NewWindow','top=?,left=?,width=?,height=?,status=YES OR NO,resizable=YES OR NO,scrollbars=YES OR NO');<br />
}<br />
// End --><br />
<br />
....BODY....<br />
<a href=http://www.htmlforums.com/archive/index.php/"javascript:url()">LINK HERE</a><br />
____________________________________________________________<br />
<br />
this will work its dirrectly from my page i use the same thing. where the "?" are put in a # for position and size.<br />
<br />
if u want more than one java link on a page just use the same script over again and put in "function url2()" and "javascript:url2()" and so on for more.<br />
<br />
gl <br />
legwon.<!--content-->i posted that already kinda<!--content-->i posted that on a nother thread i think<!--content-->YES Legwon!!! THANK YOU GOD!!!<!--content-->
 
Back
Top