View Single Post
Old 27-03-2004, 10:52   #12 (permalink)
Brown
volkswagen yellow & gold
 
Brown's Avatar
 
Join Date: Apr 2003
Location: london, england.
Posts: 6,147
Quote:
Originally Posted by Stickman
Yeah, that's right.

How do I edit the script to say 'open full'?
not tested this but its going to be something like: fullscreen=yes within your script brackets.

function PopWin(e) {

if (!e) var e = window.event;
var a = e.target ? e.target : e.srcElement;

var newwin = window.open(a.href, fullscreen=yes);

return !newwin;
}

i might be wrong with the above, can't be arsed to test it ( ) but i think there's a few ways of telling it to go fullscreen.
  Reply With Quote