<?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 for Tony Lea</title>
	<atom:link href="http://www.tonylea.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tonylea.com</link>
	<description>Programming &#124; Tutorials &#124; Reviews and How-To&#039;s</description>
	<lastBuildDate>Fri, 24 Feb 2012 11:14:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on AT&amp;T throttles users unlimited data plan by tnylea</title>
		<link>http://www.tonylea.com/2012/att-throttles-users-unlimited-data-plan/comment-page-1/#comment-938</link>
		<dc:creator>tnylea</dc:creator>
		<pubDate>Fri, 24 Feb 2012 11:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=2366#comment-938</guid>
		<description>Hey Tim, haha, your email address is awesome &#039;tim@yourmom.com&#039;, all though I&#039;m guessing that is not your real email addy.

Anyway, when I&#039;m hanging out at the DMV or the Dentist office lounge, yes, I would love to think that Netflix and At&amp;t have my back so that way I can enjoy a simple 20 minute comedy from my iPhone. I&#039;m sorry that you feel the way that you do.

Perhaps, your dad did not love you enough and you correlate that relationship with your phone service provider. Regardless... Thanks for the comment, and perhaps I may look into a new service provider so that way you and I are not on the same service.</description>
		<content:encoded><![CDATA[<p>Hey Tim, haha, your email address is awesome &#8216;tim@yourmom.com&#8217;, all though I&#8217;m guessing that is not your real email addy.</p>
<p>Anyway, when I&#8217;m hanging out at the DMV or the Dentist office lounge, yes, I would love to think that Netflix and At&#038;t have my back so that way I can enjoy a simple 20 minute comedy from my iPhone. I&#8217;m sorry that you feel the way that you do.</p>
<p>Perhaps, your dad did not love you enough and you correlate that relationship with your phone service provider. Regardless&#8230; Thanks for the comment, and perhaps I may look into a new service provider so that way you and I are not on the same service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AT&amp;T throttles users unlimited data plan by Tim</title>
		<link>http://www.tonylea.com/2012/att-throttles-users-unlimited-data-plan/comment-page-1/#comment-916</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 17 Feb 2012 03:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=2366#comment-916</guid>
		<description>Watching movies and shows on Netflix over 3G? I think AT&amp;T would love to get you off their network. It&#039;s people like you that make the network suck for the rest of us.</description>
		<content:encoded><![CDATA[<p>Watching movies and shows on Netflix over 3G? I think AT&amp;T would love to get you off their network. It&#8217;s people like you that make the network suck for the rest of us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Jquery Exit Popup by Matt</title>
		<link>http://www.tonylea.com/2011/creating-a-jquery-exit-popup/comment-page-1/#comment-909</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 15 Feb 2012 22:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1974#comment-909</guid>
		<description>Nice script.  Much less obtrusive than some other annoying pop ups.  I modified it to take into account the window&#039;s scroll position and the mouse&#039;s movement direction in an attempt to only fire it off when the mouse is moving up.

Thanks!

Matt

Here&#039;s the code I&#039;m currently using:


	var oldPosition = -1;
	$(document).ready(function() {
	
		$(document).mousemove(function(e) {
		
			$(&#039;#exitpopup&#039;).css(&#039;left&#039;, (window.innerWidth/2 - $(&#039;#exitpopup&#039;).width()/2));
			$(&#039;#exitpopup&#039;).css(&#039;top&#039;, (window.innerHeight/2 - $(&#039;#exitpopup&#039;).height()/2));
		
			var position = e.pageY - $(window).scrollTop();
			if(position &lt; 10){
				if(oldPosition != -1){
					if(position &lt; oldPosition){
						// Show the exit popup
						$(&#039;#exitpopup_bg&#039;).fadeIn();
						$(&#039;#exitpopup&#039;).fadeIn();
					}
					oldPosition = position;
				}else{
					oldPosition = position;
				}
			}
			$(&#039;#divData&#039;).html(oldPosition + &quot; : &quot; + position);
		
		});
		
		$(&#039;#exitpopup_bg&#039;).click(function(){
			$(&#039;#exitpopup_bg&#039;).fadeOut();
			$(&#039;#exitpopup&#039;).slideUp();
		});
	
	});
</description>
		<content:encoded><![CDATA[<p>Nice script.  Much less obtrusive than some other annoying pop ups.  I modified it to take into account the window&#8217;s scroll position and the mouse&#8217;s movement direction in an attempt to only fire it off when the mouse is moving up.</p>
<p>Thanks!</p>
<p>Matt</p>
<p>Here&#8217;s the code I&#8217;m currently using:</p>
<p>	var oldPosition = -1;<br />
	$(document).ready(function() {</p>
<p>		$(document).mousemove(function(e) {</p>
<p>			$(&#8216;#exitpopup&#8217;).css(&#8216;left&#8217;, (window.innerWidth/2 &#8211; $(&#8216;#exitpopup&#8217;).width()/2));<br />
			$(&#8216;#exitpopup&#8217;).css(&#8216;top&#8217;, (window.innerHeight/2 &#8211; $(&#8216;#exitpopup&#8217;).height()/2));</p>
<p>			var position = e.pageY &#8211; $(window).scrollTop();<br />
			if(position &lt; 10){<br />
				if(oldPosition != -1){<br />
					if(position &lt; oldPosition){<br />
						// Show the exit popup<br />
						$(&#039;#exitpopup_bg&#039;).fadeIn();<br />
						$(&#039;#exitpopup&#039;).fadeIn();<br />
					}<br />
					oldPosition = position;<br />
				}else{<br />
					oldPosition = position;<br />
				}<br />
			}<br />
			$(&#039;#divData&#039;).html(oldPosition + &quot; : &quot; + position);</p>
<p>		});</p>
<p>		$(&#039;#exitpopup_bg&#039;).click(function(){<br />
			$(&#039;#exitpopup_bg&#039;).fadeOut();<br />
			$(&#039;#exitpopup&#039;).slideUp();<br />
		});</p>
<p>	});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Horizontal Scrollbars by Zak</title>
		<link>http://www.tonylea.com/2011/jquery-horizontal-scrollbars/comment-page-1/#comment-893</link>
		<dc:creator>Zak</dc:creator>
		<pubDate>Fri, 10 Feb 2012 05:18:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1881#comment-893</guid>
		<description>Hi Tony,

Plugin is really useful.. 

But this plugin doesn&#039;t work if the images are added after the DOM is loaded.

My requirement is as follows:

Imagine the below one is the Scroll Bar Gallery:
------------------------------------------------------
==========================
&#124;&#124; Image1 &#124;&#124; Image2 &#124;&#124; Image3 &#124;&#124; . . . .&#124;&#124;
==========================
------------------------------------------------------
(===) --&gt; This is a Scroller
------------------------------------------------------

And below is 

Listings of Images:

Image1 Image2 Image3 Image4 Image5 Image6

Image7 Image8 Image9 ........ ImagesN


On DOM load the The Scroll Bar Gallery will be empty.
On toggle click of any of the images in the Listings of Images, the images is added / removed to the Scroll Bar Gallery.

I want the Scroll Bar Gallery to adjust accordingly after every image is added / removed.

Could you please help me in this?</description>
		<content:encoded><![CDATA[<p>Hi Tony,</p>
<p>Plugin is really useful.. </p>
<p>But this plugin doesn&#8217;t work if the images are added after the DOM is loaded.</p>
<p>My requirement is as follows:</p>
<p>Imagine the below one is the Scroll Bar Gallery:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
==========================<br />
|| Image1 || Image2 || Image3 || . . . .||<br />
==========================<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
(===) &#8211;&gt; This is a Scroller<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>And below is </p>
<p>Listings of Images:</p>
<p>Image1 Image2 Image3 Image4 Image5 Image6</p>
<p>Image7 Image8 Image9 &#8230;&#8230;.. ImagesN</p>
<p>On DOM load the The Scroll Bar Gallery will be empty.<br />
On toggle click of any of the images in the Listings of Images, the images is added / removed to the Scroll Bar Gallery.</p>
<p>I want the Scroll Bar Gallery to adjust accordingly after every image is added / removed.</p>
<p>Could you please help me in this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Horizontal Scrollbars by juan</title>
		<link>http://www.tonylea.com/2011/jquery-horizontal-scrollbars/comment-page-1/#comment-885</link>
		<dc:creator>juan</dc:creator>
		<pubDate>Wed, 08 Feb 2012 02:41:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1881#comment-885</guid>
		<description>how i make several instances of this scroll in the same screen???</description>
		<content:encoded><![CDATA[<p>how i make several instances of this scroll in the same screen???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Getting the filename and the extension from a string by Nafees</title>
		<link>http://www.tonylea.com/2011/php-getting-the-filename-and-the-extension-from-a-string/comment-page-1/#comment-873</link>
		<dc:creator>Nafees</dc:creator>
		<pubDate>Mon, 06 Feb 2012 06:29:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1323#comment-873</guid>
		<description>Was really helpful....thanks</description>
		<content:encoded><![CDATA[<p>Was really helpful&#8230;.thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PhoneGap External Link by Gary McCann</title>
		<link>http://www.tonylea.com/2011/phonegap-external-link/comment-page-1/#comment-872</link>
		<dc:creator>Gary McCann</dc:creator>
		<pubDate>Sun, 05 Feb 2012 22:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1510#comment-872</guid>
		<description>Hi Tony,

Thanks for this tip, It has been working flawlessly up until the latest release 1.4.1

Any ideas for the latest release?

Thanks,
Gary</description>
		<content:encoded><![CDATA[<p>Hi Tony,</p>
<p>Thanks for this tip, It has been working flawlessly up until the latest release 1.4.1</p>
<p>Any ideas for the latest release?</p>
<p>Thanks,<br />
Gary</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create your own jQuery Lightbox by Joshua Wall</title>
		<link>http://www.tonylea.com/2011/how-to-create-your-own-jquery-lightbox/comment-page-1/#comment-870</link>
		<dc:creator>Joshua Wall</dc:creator>
		<pubDate>Sat, 04 Feb 2012 18:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1674#comment-870</guid>
		<description>Hello,

I very much appreciate your basic tutorial.
If I were to have a few images, how would I add next and previous buttons?

...Maybe you could make a sequel? Something that shows how to embed video or how to make this into a gallery with next and previous buttons?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I very much appreciate your basic tutorial.<br />
If I were to have a few images, how would I add next and previous buttons?</p>
<p>&#8230;Maybe you could make a sequel? Something that shows how to embed video or how to make this into a gallery with next and previous buttons?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Horizontal Scrollbars by bbqchickenrobot</title>
		<link>http://www.tonylea.com/2011/jquery-horizontal-scrollbars/comment-page-1/#comment-869</link>
		<dc:creator>bbqchickenrobot</dc:creator>
		<pubDate>Sat, 04 Feb 2012 09:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1881#comment-869</guid>
		<description>Doesn&#039;t work at all on IE9 - or at least on my IE9...</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work at all on IE9 &#8211; or at least on my IE9&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PhoneGap External Link by JW</title>
		<link>http://www.tonylea.com/2011/phonegap-external-link/comment-page-1/#comment-868</link>
		<dc:creator>JW</dc:creator>
		<pubDate>Fri, 03 Feb 2012 20:13:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonylea.com/?p=1510#comment-868</guid>
		<description>This isn&#039;t working in PG 1.4.1 -- any advise?</description>
		<content:encoded><![CDATA[<p>This isn&#8217;t working in PG 1.4.1 &#8212; any advise?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

