<?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"
	>
<channel>
	<title>Comments on: Going to Ajax Experience</title>
	<atom:link href="http://erik.eae.net/archives/2006/05/11/10.02.59/feed/" rel="self" type="application/rss+xml" />
	<link>http://erik.eae.net/archives/2006/05/11/10.02.59/</link>
	<description>The Weblog of Erik Arvidsson</description>
	<pubDate>Thu, 21 Aug 2008 23:23:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Oliver Tse</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13651</link>
		<dc:creator>Oliver Tse</dc:creator>
		<pubDate>Fri, 19 May 2006 17:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13651</guid>
		<description>Erik,

Great to see you again!
Hopefully, you will speak in the 2007 event and who cares if you're shy!

Oliver</description>
		<content:encoded><![CDATA[<p>Erik,</p>
<p>Great to see you again!<br />
Hopefully, you will speak in the 2007 event and who cares if you&#8217;re shy!</p>
<p>Oliver</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Williams</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13442</link>
		<dc:creator>Mark Williams</dc:creator>
		<pubDate>Wed, 17 May 2006 16:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13442</guid>
		<description>Thanks Hakan, I'll give that a go and write back here with progress.</description>
		<content:encoded><![CDATA[<p>Thanks Hakan, I&#8217;ll give that a go and write back here with progress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Arvidsson</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13440</link>
		<dc:creator>Erik Arvidsson</dc:creator>
		<pubDate>Wed, 17 May 2006 16:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13440</guid>
		<description>I'm not involved in that product.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not involved in that product.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nitro2k01</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13435</link>
		<dc:creator>nitro2k01</dc:creator>
		<pubDate>Wed, 17 May 2006 09:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13435</guid>
		<description>Speaking of which, are you one the dev'ers behind this: http://googleblog.blogspot.com/2006/05/making-ajax-development-easier.html#links ?</description>
		<content:encoded><![CDATA[<p>Speaking of which, are you one the dev&#8217;ers behind this: <a href="http://googleblog.blogspot.com/2006/05/making-ajax-development-easier.html#links" rel="nofollow">http://googleblog.blogspot.com/2006/05/making-ajax-development-easier.html#links</a> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hakan Bilgin</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13418</link>
		<dc:creator>Hakan Bilgin</dc:creator>
		<pubDate>Tue, 16 May 2006 10:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13418</guid>
		<description>Mark, unfortunatelly the brackets messed it up...a new try:

Document.prototype.selectNodes = function(XPath, XNode) {
	if(!XNode) XNode = this;
	this.ns = this.createNSResolver(this.documentElement);
	this.qI = this.evaluate(XPath, XNode, this.ns, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
	aResult = [];
	for(i=0; i&#60;this.qI.snapshotLength; i++)
		aResult[i] = this.qI.snapshotItem(i);
	return aResult;
}
Document.prototype.selectSingleNode = function(XPath, XNode) {
	if(!XNode) XNode = this;
	this.xI = this.selectNodes(XPath, XNode);
	return (this.xI.length &#62; 0)? this.xI[0] : null ;
}
Element.prototype.selectNodes =	function(XPath) {
	return this.ownerDocument.selectNodes(XPath, this);
}
Element.prototype.selectSingleNode = function(XPath) {
	return this.ownerDocument.selectSingleNode(XPath, this);
}</description>
		<content:encoded><![CDATA[<p>Mark, unfortunatelly the brackets messed it up&#8230;a new try:</p>
<p>Document.prototype.selectNodes = function(XPath, XNode) {<br />
	if(!XNode) XNode = this;<br />
	this.ns = this.createNSResolver(this.documentElement);<br />
	this.qI = this.evaluate(XPath, XNode, this.ns, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);<br />
	aResult = [];<br />
	for(i=0; i&lt;this.qI.snapshotLength; i++)<br />
		aResult[i] = this.qI.snapshotItem(i);<br />
	return aResult;<br />
}<br />
Document.prototype.selectSingleNode = function(XPath, XNode) {<br />
	if(!XNode) XNode = this;<br />
	this.xI = this.selectNodes(XPath, XNode);<br />
	return (this.xI.length &gt; 0)? this.xI[0] : null ;<br />
}<br />
Element.prototype.selectNodes =	function(XPath) {<br />
	return this.ownerDocument.selectNodes(XPath, this);<br />
}<br />
Element.prototype.selectSingleNode = function(XPath) {<br />
	return this.ownerDocument.selectSingleNode(XPath, this);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hakan Bilgin</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13417</link>
		<dc:creator>Hakan Bilgin</dc:creator>
		<pubDate>Tue, 16 May 2006 10:55:31 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13417</guid>
		<description>Mark, this is one way of doing it:

Document.prototype.selectNodes = function(XPath, XNode) {
	if(!XNode) XNode = this;
	this.ns = this.createNSResolver(this.documentElement);
	this.qI = this.evaluate(XPath, XNode, this.ns, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
	aResult = [];
	for(i=0; i 0)? this.xI[0] : null ;
}
Element.prototype.selectNodes =	function(XPath) {
	return this.ownerDocument.selectNodes(XPath, this);
}
Element.prototype.selectSingleNode = function(XPath) {
	return this.ownerDocument.selectSingleNode(XPath, this);
}

/hbi</description>
		<content:encoded><![CDATA[<p>Mark, this is one way of doing it:</p>
<p>Document.prototype.selectNodes = function(XPath, XNode) {<br />
	if(!XNode) XNode = this;<br />
	this.ns = this.createNSResolver(this.documentElement);<br />
	this.qI = this.evaluate(XPath, XNode, this.ns, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);<br />
	aResult = [];<br />
	for(i=0; i 0)? this.xI[0] : null ;<br />
}<br />
Element.prototype.selectNodes =	function(XPath) {<br />
	return this.ownerDocument.selectNodes(XPath, this);<br />
}<br />
Element.prototype.selectSingleNode = function(XPath) {<br />
	return this.ownerDocument.selectSingleNode(XPath, this);<br />
}</p>
<p>/hbi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Williams</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13415</link>
		<dc:creator>Mark Williams</dc:creator>
		<pubDate>Tue, 16 May 2006 09:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13415</guid>
		<description>Sorry that this has nothing to do with the post.

I'm trying to find an answer to a problem and can't seem to find one - I'm guessing you might be able to help.

I use a number of prototyped methods in FF to simulate IE methods, which I'm sure you'll be familiar with. For instance this one

	// to simulate IE's .selectNodes
	Document.prototype.selectNodes = function(sExpr, contextNode) {
		var oResult = this.evaluate(sExpr, (contextNode? contextNode : this), this.createNSResolver(this.documentElement), XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
		var nodeList = new Array(oResult.snapshotLength);
		nodeList.expr = sExpr;
		for(i=0;i</description>
		<content:encoded><![CDATA[<p>Sorry that this has nothing to do with the post.</p>
<p>I&#8217;m trying to find an answer to a problem and can&#8217;t seem to find one - I&#8217;m guessing you might be able to help.</p>
<p>I use a number of prototyped methods in FF to simulate IE methods, which I&#8217;m sure you&#8217;ll be familiar with. For instance this one</p>
<p>	// to simulate IE&#8217;s .selectNodes<br />
	Document.prototype.selectNodes = function(sExpr, contextNode) {<br />
		var oResult = this.evaluate(sExpr, (contextNode? contextNode : this), this.createNSResolver(this.documentElement), XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);<br />
		var nodeList = new Array(oResult.snapshotLength);<br />
		nodeList.expr = sExpr;<br />
		for(i=0;i</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Neuberg</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13382</link>
		<dc:creator>Brad Neuberg</dc:creator>
		<pubDate>Sat, 13 May 2006 20:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13382</guid>
		<description>Erik, it was great meeting and talking with you at the show!

Best,
  Brad</description>
		<content:encoded><![CDATA[<p>Erik, it was great meeting and talking with you at the show!</p>
<p>Best,<br />
  Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Arvidsson</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13380</link>
		<dc:creator>Erik Arvidsson</dc:creator>
		<pubDate>Sat, 13 May 2006 20:06:42 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13380</guid>
		<description>I don't know jack about ajax. I know a few things about JS and DHTML but those are not cool any more ;-)

Seriously I'm not a good speaker and I'm way too shy.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know jack about ajax. I know a few things about JS and DHTML but those are not cool any more <img src='http://erik.eae.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Seriously I&#8217;m not a good speaker and I&#8217;m way too shy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hakan Bilgin</title>
		<link>http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13366</link>
		<dc:creator>Hakan Bilgin</dc:creator>
		<pubDate>Fri, 12 May 2006 18:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://erik.eae.net/archives/2006/05/11/10.02.59/#comment-13366</guid>
		<description>"...I guess it is time for me to figure out what all this Ajax hype is all about..."

haha..."may fools day"?


Why aren't you among the speakers?</description>
		<content:encoded><![CDATA[<p>&#8220;&#8230;I guess it is time for me to figure out what all this Ajax hype is all about&#8230;&#8221;</p>
<p>haha&#8230;&#8221;may fools day&#8221;?</p>
<p>Why aren&#8217;t you among the speakers?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
