<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make HTML file open in new window?</title>
	<atom:link href="http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/</link>
	<description>Webmaster Tips and Tricks</description>
	<lastBuildDate>Thu, 03 Sep 2009 15:06:27 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: d3v10u5b0y</title>
		<link>http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-388</link>
		<dc:creator>d3v10u5b0y</dc:creator>
		<pubDate>Wed, 28 Jan 2009 18:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-388</guid>
		<description>Since you didn&#039;t specify, I&#039;m going to assume you&#039;re using Internet Explorer in some version of Windows, which is likely considering anybody using any other browser on any other operating system would feel special enough to mention it.

In IE:
-Go to TOOLS in the menu.  If you do not have the menu bar visible or if you don&#039;t have text-labels showing, it&#039;s the gear icon.
-In the TOOLS drop-down, go to &quot;Properties&quot;.
-In the Properties dialog box, access the &#039;Advanced&#039; tab.
-Within the Advanced tab there is a section called &quot;Browsing&quot; in the scroll-window.
-Find the option there-in that says &quot;Reuse windows for launching shortcuts&quot;  If you&#039;re using IE7 it will also say &quot;(when tabbed browsing is off)&quot;.
-Make sure this item is unticked and OK out.
-Your issue should now be resolved.</description>
		<content:encoded><![CDATA[<p>Since you didn&#8217;t specify, I&#8217;m going to assume you&#8217;re using Internet Explorer in some version of Windows, which is likely considering anybody using any other browser on any other operating system would feel special enough to mention it.</p>
<p>In IE:<br />
-Go to TOOLS in the menu.  If you do not have the menu bar visible or if you don&#8217;t have text-labels showing, it&#8217;s the gear icon.<br />
-In the TOOLS drop-down, go to &#8220;Properties&#8221;.<br />
-In the Properties dialog box, access the &#8216;Advanced&#8217; tab.<br />
-Within the Advanced tab there is a section called &#8220;Browsing&#8221; in the scroll-window.<br />
-Find the option there-in that says &#8220;Reuse windows for launching shortcuts&#8221;  If you&#8217;re using IE7 it will also say &#8220;(when tabbed browsing is off)&#8221;.<br />
-Make sure this item is unticked and OK out.<br />
-Your issue should now be resolved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madeleine F</title>
		<link>http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-387</link>
		<dc:creator>Madeleine F</dc:creator>
		<pubDate>Mon, 26 Jan 2009 14:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-387</guid>
		<description>magic targets

for example:

Linked Text

the target=&quot;_blank&quot; will make things open in a new window.

hope that&#039;s what you were looking for!</description>
		<content:encoded><![CDATA[<p>magic targets</p>
<p>for example:</p>
<p>Linked Text</p>
<p>the target=&#8221;_blank&#8221; will make things open in a new window.</p>
<p>hope that&#8217;s what you were looking for!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DzSoundNirvana</title>
		<link>http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-386</link>
		<dc:creator>DzSoundNirvana</dc:creator>
		<pubDate>Fri, 23 Jan 2009 07:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-386</guid>
		<description>target=&quot;_blank&quot;

or javascript

Code:




function my_fun(my_win){
my_win = my_win;
//Below you can add the additional parameters for the window.open() see reference list
window.open(my_win);
}







Open my window







reference:
status The status bar at the bottom of the window.
toolbar The standard browser toolbar, with buttons such as Back/Forward.
location The Location entry field where you enter the URL.
menubar The menu bar of the window
directories The standard browser directory buttons
resizable Allow/Disallow the user to re size the window.
scrollbars Enable the scroll bars if the document is bigger than the window
height Specifies the height of the window in pixels. (example: height=&#039;150&#039;)
width Specifies the width of the window in pixels. (example: width=&#039;150&#039;)

Example of the parameters:


Code:
window.open (&quot;http://dzsoundnirvana.com/&quot;,
&quot;WindowNameWithOutSpaces&quot;,&quot;menubar=1,resizable=1,width=550,height=250&quot;);</description>
		<content:encoded><![CDATA[<p>target=&#8221;_blank&#8221;</p>
<p>or javascript</p>
<p>Code:</p>
<p>function my_fun(my_win){<br />
my_win = my_win;<br />
//Below you can add the additional parameters for the window.open() see reference list<br />
window.open(my_win);<br />
}</p>
<p>Open my window</p>
<p>reference:<br />
status The status bar at the bottom of the window.<br />
toolbar The standard browser toolbar, with buttons such as Back/Forward.<br />
location The Location entry field where you enter the URL.<br />
menubar The menu bar of the window<br />
directories The standard browser directory buttons<br />
resizable Allow/Disallow the user to re size the window.<br />
scrollbars Enable the scroll bars if the document is bigger than the window<br />
height Specifies the height of the window in pixels. (example: height=&#8217;150&#8242;)<br />
width Specifies the width of the window in pixels. (example: width=&#8217;150&#8242;)</p>
<p>Example of the parameters:</p>
<p>Code:<br />
window.open (&#8221;http://dzsoundnirvana.com/&#8221;,<br />
&#8220;WindowNameWithOutSpaces&#8221;,&#8221;menubar=1,resizable=1,width=550,height=250&#8243;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt M</title>
		<link>http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-385</link>
		<dc:creator>Matt M</dc:creator>
		<pubDate>Thu, 22 Jan 2009 01:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-385</guid>
		<description>umm if your coding it so they open into a different window in the  tag put target=&quot;blank&quot; if you want the windows to open up in new window your clicking, you can right click then click new window...</description>
		<content:encoded><![CDATA[<p>umm if your coding it so they open into a different window in the  tag put target=&#8221;blank&#8221; if you want the windows to open up in new window your clicking, you can right click then click new window&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The J-ster</title>
		<link>http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-384</link>
		<dc:creator>The J-ster</dc:creator>
		<pubDate>Tue, 20 Jan 2009 13:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.thenewwebmaster.com/how-to-make-html-file-open-in-new-window/#comment-384</guid>
		<description>hold crtl or shift when you click</description>
		<content:encoded><![CDATA[<p>hold crtl or shift when you click</p>
]]></content:encoded>
	</item>
</channel>
</rss>
