<?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: JavaScript Tip: Cross Browser Cursor Positioning</title>
	<atom:link href="http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: steida</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-266881</link>
		<dc:creator>steida</dc:creator>
		<pubDate>Mon, 25 Aug 2008 02:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-266881</guid>
		<description>No, unfortunately border zero has no effect.</description>
		<content:encoded><![CDATA[<p>No, unfortunately border zero has no effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus Hartl</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-255059</link>
		<dc:creator>Klaus Hartl</dc:creator>
		<pubDate>Thu, 06 Sep 2007 13:33:21 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-255059</guid>
		<description>I usually remove the viewport border in IE by:

html {
    border: 0;
}

Does this remove the 2px offset as well?</description>
		<content:encoded><![CDATA[<p>I usually remove the viewport border in IE by:</p>
<p>html {<br />
    border: 0;<br />
}</p>
<p>Does this remove the 2px offset as well?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hendra</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-11014</link>
		<dc:creator>hendra</dc:creator>
		<pubDate>Fri, 19 May 2006 15:15:14 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-11014</guid>
		<description>helo.........</description>
		<content:encoded><![CDATA[<p>helo&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hasin Hayder</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-2703</link>
		<dc:creator>Hasin Hayder</dc:creator>
		<pubDate>Tue, 24 Jan 2006 05:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-2703</guid>
		<description>Thats a great snippet. I was looking for this for a long time.</description>
		<content:encoded><![CDATA[<p>Thats a great snippet. I was looking for this for a long time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-2692</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 23 Jan 2006 21:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-2692</guid>
		<description>I think this is because of the different box models between quirks and strict modes. The viewport border is 2px wide.</description>
		<content:encoded><![CDATA[<p>I think this is because of the different box models between quirks and strict modes. The viewport border is 2px wide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beau Hartshorne</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-2686</link>
		<dc:creator>Beau Hartshorne</dc:creator>
		<pubDate>Mon, 23 Jan 2006 18:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-2686</guid>
		<description>Thanks Tom, I fixed this on the blog entry.</description>
		<content:encoded><![CDATA[<p>Thanks Tom, I fixed this on the blog entry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beau Hartshorne</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-2685</link>
		<dc:creator>Beau Hartshorne</dc:creator>
		<pubDate>Mon, 23 Jan 2006 18:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-2685</guid>
		<description>Thanks Tom, I&#039;ve fixed this on my blog.</description>
		<content:encoded><![CDATA[<p>Thanks Tom, I&#8217;ve fixed this on my blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning/comment-page-1#comment-2682</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 23 Jan 2006 16:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=764#comment-2682</guid>
		<description>They should try this for line 3 instead:
&lt;code&gt;var cursor = {x:0, y:0};&lt;/code&gt;
The spontaneous generation of globals has got to be one of the most annoying things about JavaScript.
Anyway, thanks for the tip/link on cursor positioning.</description>
		<content:encoded><![CDATA[<p>They should try this for line 3 instead:<br />
<code>var cursor = {x:0, y:0};</code><br />
The spontaneous generation of globals has got to be one of the most annoying things about JavaScript.<br />
Anyway, thanks for the tip/link on cursor positioning.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

