<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bloggink &#187; javascript</title>
	<atom:link href="http://joggink.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://joggink.com</link>
	<description>Blog of Joggink, home of Jochen Vandendriessche</description>
	<lastBuildDate>Fri, 27 Jan 2012 10:03:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quicktip: Internet explorer does not trigger key events on the window object</title>
		<link>http://joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/</link>
		<comments>http://joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 22:22:28 +0000</pubDate>
		<dc:creator>joggink</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[keydown]]></category>
		<category><![CDATA[keypress]]></category>
		<category><![CDATA[keyup]]></category>

		<guid isPermaLink="false">http://blog.joggink.com/?p=319</guid>
		<description><![CDATA[In one of my latest projects I had to use jquery keypress events for next and previous navigation. I develop on safari and do the cross browsertesting afterwards, and it didn&#8217;t work in Internet Explorer&#8230; so instead of listening to &#8230; <a href="http://joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In one of my latest projects I had to use jquery keypress events for next and previous navigation. I develop on safari and do the cross browsertesting afterwards, and it didn&#8217;t work in Internet Explorer&#8230;</p>
<p>so instead of listening to the window for keypress events:</p>
<pre>$(window).keypress(function(){...});</pre>
<p>I had to do this:</p>
<pre>$(document).keypress(function(){...});</pre>
]]></content:encoded>
			<wfw:commentRss>http://joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

