Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Target = _Blank Question

Status
Not open for further replies.

soho34

IS-IT--Management
Dec 28, 2004
102
US
Hi,

I have a link <a href="anotherpage.cfm" TARGET="_BLANK">Page link</a>.

The page opens fine in another window, but that window has an address bar, etc.

Is there any way to change the settings of what the user can see on this page. I only want them to see the data.

Thanks,
soho34
 
try something like this:

<a href="javascript:void window.open("anotherpage.cfm","myWin","width=300, height=300, top=300, left=500, toolbar=1, menubar=1, location=1, status=1, scrollbars=1, resizable=1")
">Page link</a>

try changing some attributes...

-DNG
 
Nevermind.....What's wrong with me? Its been too long, I guess.

In case anyone else needs it:

<a href="#" onclick="window.open('anotherpage.cfm','','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no'); ">Page link</a>

Thanks anyway.
 
Here you go:

Code:
<html>
<head>
	<script type="text/javascript">
	<!--
	
		function openWin(url) {
			window.open(url, '', 'resizable');
		}
		
	//-->
	</script>
</head>
<body>
	<a href="[URL unfurl="true"]http://www.google.co.uk/"[/URL] target="_blank" onclick="openWin(this.href); return(false);">Link</a>
</body>
</html>

I put "resizable" in, as if you specify any parameter, you don't have to specify "no" for the things you don't need. Much neater than a whole load of code, I thought.

Hope this helps,
Dan

[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]
 
Oh, hey, dotnetgnat,

Thanks for your post. I think we were posting at the same time.

I appreciate it.

Hope to return the favor one day.

soho34
 
Thanks for the post, BillyRayPreachersSon.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top