<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1021569" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1021569</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1133124</link>
    <description> &lt;p&gt;Pop-up blockers stop a lot of sites from working (including hotmail email accounts). People will have to learn to turn it on and off. I have Naviscope, and I toggle it on and off if I know a site has spam. Lots of people use mozilla.&lt;/p&gt;
&lt;p&gt;Onunload popups are just annoying period. But other uses of javascript are very valid. Create a poll with a server side scripting, then display it in a new window if that&#039;s what you are looking for.&lt;/p&gt;
&lt;p&gt;TonyMontana&lt;br /&gt;
&lt;a href=&quot;http://www.electricmountain.com&quot; class=&quot;bb-url&quot;&gt;electricmountain.com&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 15 Jun 2003 19:32:48 +0000</pubDate>
 <dc:creator>TonyMontana</dc:creator>
 <guid isPermaLink="false">comment 1133124 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1133073</link>
    <description> &lt;p&gt;Thanks for correcting my typo, too, lol...&lt;/p&gt;
&lt;p&gt;Yes, you&#039;d have to set some state or you&#039;d be spamming the user endless with your pleading for them to answer the poll. Not exactly the way I&#039;d want to leave a customer who may have been leaving my site with a favourable attitude until being attacked by the popup.&lt;/p&gt;
&lt;p&gt;I really do think that, while it&#039;s possible to do it, it&#039;s better for your users AND for you to have the poll embedded into the website (on every page if you want) asking for the feedback. If you want the feedback, don&#039;t force them to give it to you or you&#039;re going to get a lot of nonsense feedback or worse, none at all.&lt;/p&gt;
&lt;p&gt;For instance, the Washington Post makes you fill in a quiz every time you visit their site, for demographics. Every time I give them different information because it&#039;s a) totally invasive information that they are asking and b) a highly ineffective way for them to be asking and c) it makes me annoyed every time I view the screen. &lt;/p&gt;
&lt;p&gt;So annoyed that I will consciously avoid links to their site now, so whatever news they are reporting, I&#039;m not reading it and their value to me as a news source has plummeted.&lt;/p&gt;
 </description>
     <pubDate>Sat, 14 Jun 2003 20:29:57 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1133073 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1133028</link>
    <description> &lt;p&gt;But surely that would have to be put onto every page, as you don&#039;t know what page people will leave from, and then you&#039;d have the pop-up coming up everytime the page &#039;closed&#039; when they clicked a link to another page?? Maybe you&#039;d need to add some code to create a cookie so that it only opened once?&lt;/p&gt;
 </description>
     <pubDate>Sat, 14 Jun 2003 08:12:49 +0000</pubDate>
 <dc:creator>The Webmistress</dc:creator>
 <guid isPermaLink="false">comment 1133028 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132993</link>
    <description> &lt;p&gt;You&#039;d have to use On&lt;strong&gt;Un&lt;/strong&gt;Load(). Like so:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&amp;lt;body onunload=&amp;quot;window.open(...)&amp;quot;&amp;gt;&lt;/code&gt;&#039;&lt;/p&gt;
&lt;p&gt;Example (untested):&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;head&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;New Document&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function Exit() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var page = &amp;quot;poll.php&amp;quot;; // Page to open&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var name = &amp;quot;poll&amp;quot;; // Name of window&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var h=600; //Height&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var w=800; //Width&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWin=window.open(page, name, w,h&amp;quot;,directories = no,location = no, menubar = no,resizable = no,scrollbars = no, status = no,toolbar = no,screenX = 0,screenY = 0,top = 0,left = 0&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; newWin.focus();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return false;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/head&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;body OnUnLoad=&amp;quot;Exit();&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 Jun 2003 21:05:48 +0000</pubDate>
 <dc:creator>necrotic</dc:creator>
 <guid isPermaLink="false">comment 1132993 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132921</link>
    <description> &lt;p&gt;Sweetie, I&#039;ve already answered you. However:&lt;/p&gt;
&lt;p&gt;1. develop a server-side poll processing script (or find one that&#039;s available as for use on a commercial site)&lt;/p&gt;
&lt;p&gt;2. put it in its own page&lt;/p&gt;
&lt;p&gt;3. use JavaScript to pop the window up when the user leaves the page&lt;/p&gt;
&lt;p&gt;If you want to do it when people leave the site, I&#039;m really not sure. I haven&#039;t bothered to learn how to do it because it&#039;s such a fundamentally bad idea. I would assume you&#039;d have to set a cookie so they didn&#039;t get it on every page as they travel through the site or something.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Jun 2003 16:36:27 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1132921 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132914</link>
    <description> &lt;p&gt;Ok, guys.  I knew I was going to have to jump through hurdles to get some answers around here. Can I just please get some help.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Jun 2003 15:41:24 +0000</pubDate>
 <dc:creator>ronhollin</dc:creator>
 <guid isPermaLink="false">comment 1132914 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132913</link>
    <description> &lt;p&gt;It&#039;s not just mozilla, AOL are automatically including a pop-up killer with their package and many people actually pay for pop-up killer software now as they are just so sick of them. Personally I would rethink using pop-ups for gaining information.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Jun 2003 15:30:55 +0000</pubDate>
 <dc:creator>The Webmistress</dc:creator>
 <guid isPermaLink="false">comment 1132913 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132909</link>
    <description> &lt;p&gt;That&#039;s fine.  I&#039;m just looking for some feedback.  If they happen to block it, fine.  They&#039;ll never see my company.  This just means that it might take a little longer than I expected to get the results I want.  Plus how many people us Mozilla?  Not very many.&lt;/p&gt;
&lt;p&gt;So what are those steps again?&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Jun 2003 15:13:07 +0000</pubDate>
 <dc:creator>ronhollin</dc:creator>
 <guid isPermaLink="false">comment 1132909 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132908</link>
    <description> &lt;p&gt;Also, you may want to reconsider using a popup at all -- &lt;a href=&quot;http://www.zeldman.com/daily/0603a.shtml#autopop&quot; class=&quot;bb-url&quot;&gt;http://www.zeldman.com/daily/0603a.shtml#autopop&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Many users choose to block popups. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Jun 2003 15:05:06 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1132908 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/pop#comment-1132906</link>
    <description> &lt;p&gt;... no, that doesn&#039;t really make sense.&lt;/p&gt;
&lt;p&gt;There are two PARTS. It&#039;s not an either/or situation. You can have the poll on your page or in a popup (part i), and then, how will you get the information from the poll (part ii).&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Jun 2003 14:11:06 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1132906 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
