<?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: LiveSearch with Prototype.js</title>
	<atom:link href="http://fahlstad.se/2006/10/livesearch-with-prototypejs/feed/" rel="self" type="application/rss+xml" />
	<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/</link>
	<description>WordPress Unlimited</description>
	<lastBuildDate>Thu, 28 Jul 2011 20:30:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Covi</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2992</link>
		<dc:creator>Covi</dc:creator>
		<pubDate>Mon, 17 Sep 2007 23:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2992</guid>
		<description>Ummm... u can use prototype livesearch with search.php wordpress file.

results.php can&#039;t necessary...
Think it ;)</description>
		<content:encoded><![CDATA[<p>Ummm&#8230; u can use prototype livesearch with search.php wordpress file.</p>
<p>results.php can&#8217;t necessary&#8230;<br />
Think it <img src='http://fahlstad.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Fahlstad</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2991</link>
		<dc:creator>Fredrik Fahlstad</dc:creator>
		<pubDate>Thu, 23 Nov 2006 01:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2991</guid>
		<description>&lt;code&gt;new Ajax.Updater(&#039;searchresults&#039;, &#039;results.php?s=&#039; + $(&#039;s&#039;).value,&lt;/code&gt;

Should be:

&lt;code&gt;new Ajax.Updater(&#039;searchresults&#039;, &#039;results.php?s=&#039; + $(&#039;search_term&#039;).value,&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code>new Ajax.Updater('searchresults', 'results.php?s=' + $('s').value,</code></p>
<p>Should be:</p>
<p><code>new Ajax.Updater('searchresults', 'results.php?s=' + $('search_term').value,</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2990</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 21 Nov 2006 22:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2990</guid>
		<description>Keep getting this error:
&lt;code&gt;Error: $(&quot;s&quot;) has no properties
Source File: http://localhost/examples/ajax/livesearch/general.js
Line: 6&lt;/code&gt;

General.js
&lt;code&gt;function init(){
	$(&#039;searchform&#039;).onsubmit = function() { doSearch();
	return false; };
}

function doSearch(){
	new Ajax.Updater(&#039;searchresults&#039;, &#039;results.php?s=&#039; + $(&#039;s&#039;).value,
	{onComplete:function(){ new Effect.Highlight(&#039;searchresults&#039;);},
	asynchronous:true});
}

Event.observe(window, &#039;load&#039;, init, false);&lt;/code&gt;

Any clue?</description>
		<content:encoded><![CDATA[<p>Keep getting this error:<br />
<code>Error: $("s") has no properties<br />
Source File: <a href="http://localhost/examples/ajax/livesearch/general.js" rel="nofollow">http://localhost/examples/ajax/livesearch/general.js</a><br />
Line: 6</code></p>
<p>General.js<br />
<code>function init(){<br />
	$('searchform').onsubmit = function() { doSearch();<br />
	return false; };<br />
}</p>
<p>function doSearch(){<br />
	new Ajax.Updater('searchresults', 'results.php?s=' + $('s').value,<br />
	{onComplete:function(){ new Effect.Highlight('searchresults');},<br />
	asynchronous:true});<br />
}</p>
<p>Event.observe(window, 'load', init, false);</code></p>
<p>Any clue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J-Man</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2989</link>
		<dc:creator>J-Man</dc:creator>
		<pubDate>Fri, 03 Nov 2006 15:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2989</guid>
		<description>Can all this be accomplished without the use of frames? I mean without using a js bustout script?</description>
		<content:encoded><![CDATA[<p>Can all this be accomplished without the use of frames? I mean without using a js bustout script?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Fahlstad</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2988</link>
		<dc:creator>Fredrik Fahlstad</dc:creator>
		<pubDate>Tue, 31 Oct 2006 13:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2988</guid>
		<description>&lt;strong&gt;bill n&lt;/strong&gt;: Hm.. Strange, I&#039;ll have to look into that. Thanks again.</description>
		<content:encoded><![CDATA[<p><strong>bill n</strong>: Hm.. Strange, I&#8217;ll have to look into that. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill n</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2987</link>
		<dc:creator>bill n</dc:creator>
		<pubDate>Tue, 31 Oct 2006 08:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2987</guid>
		<description>now it&#039;s even cooler - sorry Fredrik ;-)

Now you have only one problem: when I type &#039;search&#039; in the searchbox and the blind comes down with the results, if I scroll down with the mouse much of your formatting is destroyed (Firefox 2) - your graphics have not moved and neither have cookie input elements for the reply box so they are tangled up in everything else.
Ineterstingly using your new close function in the search area does not fix everything - you need to refresh for that.

Hope this helps
Cheers, Bill</description>
		<content:encoded><![CDATA[<p>now it&#8217;s even cooler &#8211; sorry Fredrik <img src='http://fahlstad.se/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Now you have only one problem: when I type &#8216;search&#8217; in the searchbox and the blind comes down with the results, if I scroll down with the mouse much of your formatting is destroyed (Firefox 2) &#8211; your graphics have not moved and neither have cookie input elements for the reply box so they are tangled up in everything else.<br />
Ineterstingly using your new close function in the search area does not fix everything &#8211; you need to refresh for that.</p>
<p>Hope this helps<br />
Cheers, Bill</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Fahlstad</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2986</link>
		<dc:creator>Fredrik Fahlstad</dc:creator>
		<pubDate>Mon, 30 Oct 2006 18:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2986</guid>
		<description>&lt;strong&gt;bill n&lt;/strong&gt;: Thanks for the suggestion. And by the way the name is Fredrik.</description>
		<content:encoded><![CDATA[<p><strong>bill n</strong>: Thanks for the suggestion. And by the way the name is Fredrik.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill n</title>
		<link>http://fahlstad.se/2006/10/livesearch-with-prototypejs/#comment-2985</link>
		<dc:creator>bill n</dc:creator>
		<pubDate>Mon, 30 Oct 2006 15:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fahlstad.se/2006/10/27/wp-livesearch-with-prototypejs/#comment-2985</guid>
		<description>Thanks for this Erik - if I might venture, there is one thing missing from your site&#039;s search function - a reset button that closes the result section
However, cools tuff as usual
Thanks, Bill</description>
		<content:encoded><![CDATA[<p>Thanks for this Erik &#8211; if I might venture, there is one thing missing from your site&#8217;s search function &#8211; a reset button that closes the result section<br />
However, cools tuff as usual<br />
Thanks, Bill</p>
]]></content:encoded>
	</item>
</channel>
</rss>

