<?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 on: jQuery zoom event plugin</title>
	<atom:link href="http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/</link>
	<description>Maniacal musings of a pixel perfectionist</description>
	<lastBuildDate>Mon, 05 Jul 2010 15:35:47 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jackson</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-144</link>
		<dc:creator>Jackson</dc:creator>
		<pubDate>Mon, 05 Jul 2010 15:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-144</guid>
		<description>Thanks, I just looking for!
All my Br work.</description>
		<content:encoded><![CDATA[<p>Thanks, I just looking for!<br />
All my Br work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Deater</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-134</link>
		<dc:creator>Tom Deater</dc:creator>
		<pubDate>Mon, 12 Apr 2010 15:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-134</guid>
		<description>Here&#039;s a plugin for detecting font-size changes that I published awhile ago. It doesn&#039;t detect page zoom changes. It doesn&#039;t rely on polling, like the ALA technique, but instead uses a mechanism developed by Hedger Wang:

http://tomdeater.com/jquery/onfontresize/</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a plugin for detecting font-size changes that I published awhile ago. It doesn&#8217;t detect page zoom changes. It doesn&#8217;t rely on polling, like the ALA technique, but instead uses a mechanism developed by Hedger Wang:</p>
<p><a href="http://tomdeater.com/jquery/onfontresize/" rel="nofollow">http://tomdeater.com/jquery/onfontresize/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Hasler</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-25</link>
		<dc:creator>Sam Hasler</dc:creator>
		<pubDate>Mon, 07 Sep 2009 17:28:17 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-25</guid>
		<description>This doesn&#039;t on chrome either. It&#039;s a pity there isn&#039;t a way to do feature detection for this.</description>
		<content:encoded><![CDATA[<p>This doesn&#8217;t on chrome either. It&#8217;s a pity there isn&#8217;t a way to do feature detection for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared Mellentine</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-17</link>
		<dc:creator>Jared Mellentine</dc:creator>
		<pubDate>Fri, 12 Dec 2008 14:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-17</guid>
		<description>@rob: Like I mentioned in the article, I can only watch for keyboard and mouse shortcuts, using my method anyway.  I hadn&#039;t thought about the method that ALA suggests.  I&#039;ll have to check it out.  Maybe less browser-specific code...</description>
		<content:encoded><![CDATA[<p>@rob: Like I mentioned in the article, I can only watch for keyboard and mouse shortcuts, using my method anyway.  I hadn&#8217;t thought about the method that ALA suggests.  I&#8217;ll have to check it out.  Maybe less browser-specific code&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-14</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Fri, 12 Dec 2008 14:31:52 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-14</guid>
		<description>Another thing I was thinking about was, what if the text is resized using the menus as opposed to the keyboard?

This old(er) ALA article discusses a scenario of adding hidden element and testing it&#039;s size ... food for thought.

http://www.alistapart.com/articles/fontresizing</description>
		<content:encoded><![CDATA[<p>Another thing I was thinking about was, what if the text is resized using the menus as opposed to the keyboard?</p>
<p>This old(er) ALA article discusses a scenario of adding hidden element and testing it&#8217;s size &#8230; food for thought.</p>
<p><a href="http://www.alistapart.com/articles/fontresizing" rel="nofollow">http://www.alistapart.com/articles/fontresizing</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared Mellentine</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-16</link>
		<dc:creator>Jared Mellentine</dc:creator>
		<pubDate>Fri, 12 Dec 2008 07:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-16</guid>
		<description>@rob: I&#039;ll take a look at that tomorrow.  You&#039;re right, it&#039;s probably just the Apple key vs. CTRL key and it&#039;s probably just a matter of changing e.ctrlKey in line 5 to (e.ctrlKey &#124;&#124; e.metaKey).</description>
		<content:encoded><![CDATA[<p>@rob: I&#8217;ll take a look at that tomorrow.  You&#8217;re right, it&#8217;s probably just the Apple key vs. CTRL key and it&#8217;s probably just a matter of changing e.ctrlKey in line 5 to (e.ctrlKey || e.metaKey).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://mlntn.com/2008/12/11/javascript-jquery-zoom-event-plugin/comment-page-1/#comment-15</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Fri, 12 Dec 2008 03:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://mlntn.com/?p=34#comment-15</guid>
		<description>Hey, this is a great idea for a plugin, but the demo doesn&#039;t appear to work for me using a Mac and Firefox 3.0.x ... perhaps it&#039;s because the command for the Mac is the &quot;command&quot; key, not the &quot;control&quot; key?</description>
		<content:encoded><![CDATA[<p>Hey, this is a great idea for a plugin, but the demo doesn&#8217;t appear to work for me using a Mac and Firefox 3.0.x &#8230; perhaps it&#8217;s because the command for the Mac is the &#8220;command&#8221; key, not the &#8220;control&#8221; key?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
