<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Simple OTO and Countdown Timer</title>
	<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/</link>
	<description>i Code to help you profit!</description>
	<pubDate>Sat, 22 Nov 2008 06:00:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>

	<item>
		<title>by: blueston</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-246</link>
		<pubDate>Thu, 03 Apr 2008 17:07:46 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-246</guid>
					<description>Hi Michel,

Your scripts are great.  I have a 2 hour countdown set.  Unfortunately, if the user refreshes the page the script automatically reads &quot;Time is gone&quot;.

Any chance you can give me some insight on how to keep the current state of the countdown if the visitor refreshes or leaves and returns to the same page.

I am trying to give the visitor a 2 hour total even it takes several trips to the page.

Thanks - Mark</description>
		<content:encoded><![CDATA[<p>Hi Michel,</p>
<p>Your scripts are great.  I have a 2 hour countdown set.  Unfortunately, if the user refreshes the page the script automatically reads &#8220;Time is gone&#8221;.</p>
<p>Any chance you can give me some insight on how to keep the current state of the countdown if the visitor refreshes or leaves and returns to the same page.</p>
<p>I am trying to give the visitor a 2 hour total even it takes several trips to the page.</p>
<p>Thanks - Mark
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: blueston</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-245</link>
		<pubDate>Wed, 02 Apr 2008 19:29:49 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-245</guid>
					<description>Hi Michel,

I love your scripts.  This will help me very much.  I have implemented a 2 hour countdown.  It works perfectly, unless the customer refreshes the page while the countdown has not finished.

Since the cookie has already been set, it shows the &quot;Time is gone&quot; message.

Any chance you can give me some insight on how to show the current countdown even if the visitor refreshes or closes the page and returns later?

Thanks in advance - Mark</description>
		<content:encoded><![CDATA[<p>Hi Michel,</p>
<p>I love your scripts.  This will help me very much.  I have implemented a 2 hour countdown.  It works perfectly, unless the customer refreshes the page while the countdown has not finished.</p>
<p>Since the cookie has already been set, it shows the &#8220;Time is gone&#8221; message.</p>
<p>Any chance you can give me some insight on how to show the current countdown even if the visitor refreshes or closes the page and returns later?</p>
<p>Thanks in advance - Mark
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: dudu08</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-239</link>
		<pubDate>Fri, 07 Mar 2008 23:11:25 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-239</guid>
					<description>If i want to set countdown start in hours like &quot;1 hours 30 minutes 30 second&quot; how to do that?</description>
		<content:encoded><![CDATA[<p>If i want to set countdown start in hours like &#8220;1 hours 30 minutes 30 second&#8221; how to do that?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: michel</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-216</link>
		<pubDate>Wed, 09 Jan 2008 15:50:22 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-216</guid>
					<description>Hi Blogman,

This scripts shows a timer and hides the offer with your link after the timer reaches zero. It works with cookie, so the offer wouldn't appear when they come back later to the offer page.
But the script can't manage another page your link directs to.
You need another script on these landing (order) page.

In case the order page at the same site as the offer page, you could use a code to check the same cookie. Try the code below:
&lt;div style=&quot;border:1px solid silver;padding:1ex&quot;&gt;&lt;code&gt;&amp;#60;script type=&amp;#34;text/javascript&amp;#34;&amp;#62;
&amp;#60;!--
function &lt;span style=&quot;color: brown;&quot;&gt;oto(otoName)&lt;/span&gt; {
&amp;#160;&amp;#160;var cookie = &amp;#34;oto&amp;#34;+escape(otoName)+&amp;#34;=&amp;#34;;
&amp;#160;&amp;#160;if (0 &amp;#62; document.cookie.indexOf(cookie)) return true;
&amp;#160;&amp;#160;else return false;
}

&lt;span style=&quot;color: red;&quot;&gt;if ( ! oto(&amp;#34;YourSpecialOfferName&amp;#34;))
&amp;#160;&amp;#160;window.location.assign(&amp;#34;http://YourSite.com/redirect-to-expire.html&amp;#34;);&lt;/span&gt;
//--&amp;#62;
&amp;#60;/script&amp;#62;&lt;/code&gt;&lt;/div&gt;

Place this code in the &lt;code&gt;&amp;#60;head&amp;#62;&lt;/code&gt; &amp;#8212; &lt;code&gt;&amp;#60;/head&amp;#62;&lt;/code&gt; section of your page.

Hope this helps.
Michel</description>
		<content:encoded><![CDATA[<p>Hi Blogman,</p>
<p>This scripts shows a timer and hides the offer with your link after the timer reaches zero. It works with cookie, so the offer wouldn&#8217;t appear when they come back later to the offer page.<br />
But the script can&#8217;t manage another page your link directs to.<br />
You need another script on these landing (order) page.</p>
<p>In case the order page at the same site as the offer page, you could use a code to check the same cookie. Try the code below:</p>
<div style="border:1px solid silver;padding:1ex"><code>&lt;script type=&quot;text/javascript&quot;&gt;<br />
&lt;!--<br />
function <span style="color: brown;">oto(otoName)</span> {<br />
&nbsp;&nbsp;var cookie = &quot;oto&quot;+escape(otoName)+&quot;=&quot;;<br />
&nbsp;&nbsp;if (0 &gt; document.cookie.indexOf(cookie)) return true;<br />
&nbsp;&nbsp;else return false;<br />
}</p>
<p><span style="color: red;">if ( ! oto(&quot;YourSpecialOfferName&quot;))<br />
&nbsp;&nbsp;window.location.assign(&quot;http://YourSite.com/redirect-to-expire.html&quot;);</span><br />
//--&gt;<br />
&lt;/script&gt;</code></div>
<p>Place this code in the <code>&lt;head&gt;</code> &mdash; <code>&lt;/head&gt;</code> section of your page.</p>
<p>Hope this helps.<br />
Michel
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: blogman</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-215</link>
		<pubDate>Wed, 09 Jan 2008 09:37:32 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-215</guid>
					<description>Or as an option to blocking the order link - when the timer reaches zero - the page is redirected to another page - or if they come back later - it is also redirected to another page that might be even better
Thanks Again
Blogman</description>
		<content:encoded><![CDATA[<p>Or as an option to blocking the order link - when the timer reaches zero - the page is redirected to another page - or if they come back later - it is also redirected to another page that might be even better<br />
Thanks Again<br />
Blogman
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: blogman</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-214</link>
		<pubDate>Wed, 09 Jan 2008 09:28:10 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-214</guid>
					<description>Michel,
I like the simplicity of your scripts.  How does a person disable a order link if the count down has reached zero?
Thanks,
Blogman</description>
		<content:encoded><![CDATA[<p>Michel,<br />
I like the simplicity of your scripts.  How does a person disable a order link if the count down has reached zero?<br />
Thanks,<br />
Blogman
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: OTO - One Time Offer - Black Hat Forum</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-202</link>
		<pubDate>Wed, 05 Dec 2007 20:19:35 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-202</guid>
					<description>[...] Re: OTO - One Time Offer     Basically there is no need neither for software, nor for some special script. You can make with simple static pages a fake OTO which says it is OTO, but in reality user can navigate to find it again. At least user will be happy that he didn't lost the chance, and eventually he will use it to buy. And if he doesn't buy, then who cares?  OTO has been so much used and abused, that personally I don't believe in the &amp;#34;unique opportunity&amp;#34; which goes away. And usually, after bypassing the OTO, I encounter again the same - or better - discount offer or special upgrade ofer as &amp;#34;one more chance&amp;#34; later, on the membership page.  However if you really would like to have a genuine One Time Offer, I mean the OTO is intended to be really unique, and you have a good copy which gives a really reasonable and believable reason for the uniqueness of the One Time Offer, then you can simply google for [free php &amp;#34;one time offer&amp;#34; OR &amp;#34;OTO&amp;#34;], just remove the brackets, and you may choose some free goodies.  For instance in less than one minute I found on Google:    and   http://askmichel.icoder.com/2006/08/...timer/#more-24   Bingo! Just chose which script you like better, copy and paste it in your web-page code and you have what you desired.  I don't know personally Michel Komarov, the author of these scripts, but from reading his articles, I have the impression, that he is a good authority on this scripting subject.  You may find worth of browsing his site for more goodies to be used on marketing pages.  Regards,  Art Swerdstone  P.S. If anyone feels too hard or boring using google search, I may offer one-two hours per day from my time for organic search on Google for just $50 hourly rate. Just PM me. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Re: OTO - One Time Offer     Basically there is no need neither for software, nor for some special script. You can make with simple static pages a fake OTO which says it is OTO, but in reality user can navigate to find it again. At least user will be happy that he didn&#8217;t lost the chance, and eventually he will use it to buy. And if he doesn&#8217;t buy, then who cares?  OTO has been so much used and abused, that personally I don&#8217;t believe in the &quot;unique opportunity&quot; which goes away. And usually, after bypassing the OTO, I encounter again the same - or better - discount offer or special upgrade ofer as &quot;one more chance&quot; later, on the membership page.  However if you really would like to have a genuine One Time Offer, I mean the OTO is intended to be really unique, and you have a good copy which gives a really reasonable and believable reason for the uniqueness of the One Time Offer, then you can simply google for [free php &quot;one time offer&quot; OR &quot;OTO&quot;], just remove the brackets, and you may choose some free goodies.  For instance in less than one minute I found on Google:    and   <a href='http://askmichel.icoder.com/2006/08/&#8230;timer/#more-24' rel='nofollow'>http://askmichel.icoder.com/2006/08/&#8230;timer/#more-24</a>   Bingo! Just chose which script you like better, copy and paste it in your web-page code and you have what you desired.  I don&#8217;t know personally Michel Komarov, the author of these scripts, but from reading his articles, I have the impression, that he is a good authority on this scripting subject.  You may find worth of browsing his site for more goodies to be used on marketing pages.  Regards,  Art Swerdstone  P.S. If anyone feels too hard or boring using google search, I may offer one-two hours per day from my time for organic search on Google for just $50 hourly rate. Just PM me. [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: &#187; MoneyFX.com</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-51</link>
		<pubDate>Tue, 12 Sep 2006 12:46:48 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-51</guid>
					<description>[...] Gaining in popularity is the OTO or one time offer page.  It contains scripts that make it available only once as to entice the buyer to buy now or lose out.  It is still fairly new and I don’t see them going anywhere anytime soon.  If you decide to use this tactic beware that you may drive people from your site.  If, however, you are driving targeted traffic to your site, this selling tactic may prove to be successful.  To see an example of this code, follow this link:  OTO page!     &amp;#160;   &amp;#171; Welcome! &amp;#124;   &amp;#160; [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Gaining in popularity is the OTO or one time offer page.  It contains scripts that make it available only once as to entice the buyer to buy now or lose out.  It is still fairly new and I don’t see them going anywhere anytime soon.  If you decide to use this tactic beware that you may drive people from your site.  If, however, you are driving targeted traffic to your site, this selling tactic may prove to be successful.  To see an example of this code, follow this link:  OTO page!     &nbsp;   &laquo; Welcome! |   &nbsp; [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: money-fx.com &#187; OTO pages</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-47</link>
		<pubDate>Sat, 02 Sep 2006 19:21:23 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-47</guid>
					<description>[...] Gaining in popularity is the OTO or one time offer page.  It contains scripts that make it available only once as to entice the buyer to buy now or lose out.  It is still fairly new and I don&amp;#8217;t see them going anywhere anytime soon.  If you decide to use this tactic beware that you may drive people from your site.  If, however, you are driving targeted traffic to your site, this selling tactic may prove to be successful.  To see an example of this code, follow this link:  http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer  [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Gaining in popularity is the OTO or one time offer page.  It contains scripts that make it available only once as to entice the buyer to buy now or lose out.  It is still fairly new and I don&#8217;t see them going anywhere anytime soon.  If you decide to use this tactic beware that you may drive people from your site.  If, however, you are driving targeted traffic to your site, this selling tactic may prove to be successful.  To see an example of this code, follow this link:  <a href='http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer ' rel='nofollow'>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer </a> [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: money-fx.com &#187; OTO pages</title>
		<link>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-46</link>
		<pubDate>Sat, 02 Sep 2006 19:18:02 +0000</pubDate>
		<guid>http://askmichel.icoder.com/2006/08/07/simple-oto-and-countdown-timer/#comment-46</guid>
					<description>[...] Gaining in popularity is the OTO or one time offer page.  It contains scripts that make it available only once as to entice the buyer to buy now or lose out.  It is still fairly new and I don&amp;#8217;t see them going anywhere anytime soon.  If you decide to use this tactic beware that you may drive people from your site.  If, however, you are driving targeted traffic to your site, this selling tactic may prove to be successful.  To see an example of this code,  click here. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Gaining in popularity is the OTO or one time offer page.  It contains scripts that make it available only once as to entice the buyer to buy now or lose out.  It is still fairly new and I don&#8217;t see them going anywhere anytime soon.  If you decide to use this tactic beware that you may drive people from your site.  If, however, you are driving targeted traffic to your site, this selling tactic may prove to be successful.  To see an example of this code,  click here. [&#8230;]
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
