<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1003237" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1003237</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014287</link>
    <description> &lt;p&gt;Well I do appreciate all the info. I haven&#039;t had a chance to use it yet. &lt;/p&gt;
&lt;p&gt;Thanks again&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Jun 2000 01:48:00 +0000</pubDate>
 <dc:creator>artnow</dc:creator>
 <guid isPermaLink="false">comment 1014287 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014286</link>
    <description> &lt;p&gt;Hi Arielladog,&lt;/p&gt;
&lt;p&gt;   just cut&amp;amp;pasted it for someone in javascript city.&lt;/p&gt;
&lt;p&gt;  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;br /&gt;
Vinny&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
my site:&lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;GrassBlade: cut&amp;amp;paste javascript&lt;/a&gt;&lt;br /&gt;
moderator at:&lt;a href=&quot;http://www.javaplace.co.uk&quot; class=&quot;bb-url&quot;&gt;The Javascript Place&lt;/a&gt;&lt;br /&gt;
&lt;A target=&quot;_blank&quot;&gt;Javascript City&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Jun 2000 00:02:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1014286 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014285</link>
    <description> &lt;p&gt;hehe  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/wink.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 27 Jun 2000 23:04:00 +0000</pubDate>
 <dc:creator>Arielladog</dc:creator>
 <guid isPermaLink="false">comment 1014285 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014284</link>
    <description> &lt;p&gt;Thanks Arielladog  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; Kept looking for it, but couldn&#039;t find it. Then saw your post on wsabstract &amp;amp; thought Great! I&#039;ll cut&amp;amp;paste &amp;amp; bring it here. &lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
my site:&lt;a href=&quot;http://members.aol.com/grassblad&quot; class=&quot;bb-url&quot;&gt;GrassBlade: cut&amp;amp;paste javascript&lt;/a&gt;&lt;br /&gt;
moderator at:&lt;a href=&quot;http://www.javaplace.co.uk&quot; class=&quot;bb-url&quot;&gt;The Javascript Place&lt;/a&gt;&lt;br /&gt;
&lt;A target=&quot;_blank&quot;&gt;Javascript City&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 27 Jun 2000 17:14:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1014284 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014283</link>
    <description> &lt;p&gt;I had to do this, also before.  What I did was first open another printable version page that I had made.  With window.open(&#039;theprintversion.html&#039;) and you could make it scroll bars , whatever.  Then, I made the print version of the page and put this script in the head.&lt;/p&gt;
&lt;p&gt;&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
function printit(){&lt;br /&gt;
if (window.print) {&lt;br /&gt;
window.print() ;&lt;br /&gt;
} else if (document.all) {&lt;br /&gt;
var WebBrowser = &#039;&amp;lt;OBJECT ID=&quot;WebBrowser1&quot; WIDTH=0 HEIGHT=0 CLASSID=&quot;CLSID:8856F961-340A-11D0-A96B-00C04FD705A2&quot;&amp;gt;&amp;lt;/OBJECT&amp;gt;&#039;;&lt;br /&gt;
document.body.insertAdjacentHTML(&#039;beforeEnd&#039;, WebBrowser);&lt;br /&gt;
WebBrowser1.ExecWB(6, 1);//Use a 1 vs. a 6 for a prompting dialog box&lt;br /&gt;
WebBrowser1.outerHTML = &quot;&quot;;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/script&amp;gt; &lt;/p&gt;
&lt;p&gt;&amp;lt;/heaD&amp;gt;&amp;lt;BODY onload=&quot;printit();setTimeout(&#039;self.close&#039;,10000)&quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;note that if you change the 1 to a 6, you won&#039;t get a dialog box when printing from IE.  THe page will automatically begin printing without the user&#039;s consent (other than the fact that they click on that page)...sneaky, ain&#039;t it¿&lt;/p&gt;
 </description>
     <pubDate>Mon, 26 Jun 2000 04:31:00 +0000</pubDate>
 <dc:creator>Arielladog</dc:creator>
 <guid isPermaLink="false">comment 1014283 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014282</link>
    <description> &lt;p&gt;Hi, &lt;/p&gt;
&lt;p&gt;  yes, window.print() works for NN; IE requires an activeX control (webBrowser), whose object ID I do not have at the moment. (I recall having posted the command/script here or on the Javascript City boards; at any rate, I&#039;ll put it up asap.)&lt;br /&gt;
  However, both commands tend to print the page itself (graphics, url info, etc), much as the browser&#039;s FILE-Print command. If you want a &quot;printer-friendly&quot; solution, you may need to direct the link to a text-only page.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.javascriptcity.com&quot; class=&quot;bb-url&quot;&gt;Javascript City&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
&lt;p&gt;[This message has been edited by Vincent Puglia (edited 25 June 2000).]&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Jun 2000 22:06:00 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1014282 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014281</link>
    <description> &lt;p&gt;window.print() is what you need.&lt;/p&gt;
&lt;p&gt;At least that&#039;s what JavaScript the Definitive Guide says.   &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; Page 736, but no other instructions.&lt;/p&gt;
&lt;p&gt; &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; Suzanne&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://www.zerocattle.com&quot; class=&quot;bb-url&quot;&gt;Zero Cattle&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.inforamp.net/~suzanne/&quot; class=&quot;bb-url&quot;&gt;Suzanne&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.inforamp.net/~suzanne/index/celtic.html&quot; class=&quot;bb-url&quot;&gt;Tables DeMystified&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Jun 2000 21:08:00 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1014281 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/link-called-print-page#comment-1014280</link>
    <description> &lt;p&gt;If your site is databased it would just be a matter of calling the content with a plain vanilla template. For example if you have a review site your review for a camera may be someurl.com/review.php?id=05. This page would contain all your fancy pics and layout. Each review would be contained in a database and given an id (in the example above id=05).&lt;/p&gt;
&lt;p&gt;Your &quot;print this page&quot; link would be someurl.com/print.php?id=05. The template print.php would just display plain white background and black text.&lt;/p&gt;
&lt;p&gt;It would take quite a bit of work to set up a databased site, it all depends on how large and how detailed you want to get, but in the long run it would make maintaining your site a lot easier.&lt;/p&gt;
&lt;p&gt;There may be a way to do this with javascript but I don&#039;t know how. I am only telling you the way I know is possible. &lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Gem&lt;br /&gt;
Summer&#039;s here- OH YEAH!&lt;/p&gt;
 </description>
     <pubDate>Sun, 25 Jun 2000 17:25:00 +0000</pubDate>
 <dc:creator>Gem</dc:creator>
 <guid isPermaLink="false">comment 1014280 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
