<?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/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: Highlighter: A MooTools Search &amp; Highlight&#160;Plugin</title> <atom:link href="http://davidwalsh.name/mootools-highlighter-search/feed" rel="self" type="application/rss+xml" /><link>http://davidwalsh.name/mootools-highlighter-search</link> <description>Legendary scribbles about JavaScript, HTML5, AJAX, PHP, CSS, and ∞.</description> <lastBuildDate>Wed, 23 May 2012 14:01:31 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: Katie</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-31494</link> <dc:creator>Katie</dc:creator> <pubDate>Mon, 09 Apr 2012 23:31:20 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-31494</guid> <description>Is there any way for the code to unhighlight the old search automatically when a new search is done?</description> <content:encoded><![CDATA[<p>Is there any way for the code to unhighlight the old search automatically when a new search is done?</p> ]]></content:encoded> </item> <item><title>By: proglammer</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-17655</link> <dc:creator>proglammer</dc:creator> <pubDate>Mon, 17 May 2010 13:17:32 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-17655</guid> <description>this seems like a great plugin, judging by the demo, but I just can&#039;t get it working... if I use autoUnhighlight: true, when trying to search I always get the errorwords is undefinedinif (words.constructor === String) { words = [words]; }which is in the unhighlight function...in any case, it won&#039;t even search and I don&#039;t think I do anything wrong...</description> <content:encoded><![CDATA[<p>this seems like a great plugin, judging by the demo, but I just can&#8217;t get it working&#8230; if I use autoUnhighlight: true, when trying to search I always get the error</p><p>words is undefined</p><p>in</p><p>if (words.constructor === String) { words = [words]; }</p><p>which is in the unhighlight function&#8230;</p><p>in any case, it won&#8217;t even search and I don&#8217;t think I do anything wrong&#8230;</p> ]]></content:encoded> </item> <item><title>By: sepetli platform</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-15430</link> <dc:creator>sepetli platform</dc:creator> <pubDate>Wed, 20 Jan 2010 18:48:08 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-15430</guid> <description>this information most important for me.
thanks...</description> <content:encoded><![CDATA[<p>this information most important for me.<br
/> thanks&#8230;</p> ]]></content:encoded> </item> <item><title>By: witold</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-14162</link> <dc:creator>witold</dc:creator> <pubDate>Thu, 03 Dec 2009 15:37:39 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-14162</guid> <description>hi, i use the following cod to highlight / unhighlight searched word by clicking on a checkbox:$(&#039;colorme&#039;).addEvent(&#039;change&#039;,function() {if($(&#039;colorme&#039;).checked==true) {
highlighter.highlight(Cookie.read(&#039;search_value&#039;),&#039;*&#039;,&#039;highlight&#039;);	}
else { highlighter.unhighlight(Cookie.read(&#039;search_value&#039;)); }
});for some reason i get the following errorel.getParent() is nullcan you tell me what&#039;s wrongregards, witold</description> <content:encoded><![CDATA[<p>hi, i use the following cod to highlight / unhighlight searched word by clicking on a checkbox:</p><p>$(&#8216;colorme&#8217;).addEvent(&#8216;change&#8217;,function() {</p><p>if($(&#8216;colorme&#8217;).checked==true) {<br
/> highlighter.highlight(Cookie.read(&#8216;search_value&#8217;),&#8217;*',&#8217;highlight&#8217;);	}<br
/> else { highlighter.unhighlight(Cookie.read(&#8216;search_value&#8217;)); }</p><p>});</p><p>for some reason i get the following error</p><p>el.getParent() is null</p><p>can you tell me what&#8217;s wrong</p><p>regards, witold</p> ]]></content:encoded> </item> <item><title>By: Petar</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-14160</link> <dc:creator>Petar</dc:creator> <pubDate>Thu, 03 Dec 2009 13:05:42 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-14160</guid> <description>Hi, really great work! :D
I&#039;ve a little suggestion for fix the problem with unhighlithing.
I put in the page an additional form such asand then something like in the codeif( $(&#039;searched_word&#039;).value )
search.unhighlight( $(&#039;testo_cercato&#039;).value );
$(&#039;searched_word&#039;).value = words;
search.highlight(words);where search is a highlighter method, words the searched words taken from an input box. Probably another way wuold be this of searching an element in the page with che highlighter class, taking it value (or text content) and in the same way clearing it from the all page.
Hope it will be useful. thanks again :D</description> <content:encoded><![CDATA[<p>Hi, really great work! :D<br
/> I&#8217;ve a little suggestion for fix the problem with unhighlithing.<br
/> I put in the page an additional form such as</p><p>and then something like in the code</p><p>if( $(&#8216;searched_word&#8217;).value )<br
/> search.unhighlight( $(&#8216;testo_cercato&#8217;).value );<br
/> $(&#8216;searched_word&#8217;).value = words;<br
/> search.highlight(words);</p><p>where search is a highlighter method, words the searched words taken from an input box. Probably another way wuold be this of searching an element in the page with che highlighter class, taking it value (or text content) and in the same way clearing it from the all page.<br
/> Hope it will be useful. thanks again :D</p> ]]></content:encoded> </item> <item><title>By: David Walsh</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-11208</link> <dc:creator>David Walsh</dc:creator> <pubDate>Wed, 12 Aug 2009 13:43:29 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-11208</guid> <description>&lt;p&gt;I see.  You&#039;ll need to implement Events on the class -- I&#039;d recommend an &quot;onFind&quot; event that gets fired when a match is found.  Then you can direct the element to be scrolled to.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>I see.  You&#8217;ll need to implement Events on the class &#8212; I&#8217;d recommend an &#8220;onFind&#8221; event that gets fired when a match is found.  Then you can direct the element to be scrolled to.</p> ]]></content:encoded> </item> <item><title>By: emse</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-11207</link> <dc:creator>emse</dc:creator> <pubDate>Wed, 12 Aug 2009 13:38:51 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-11207</guid> <description>i have a large page where every item is posted once. i want the user to type e.g. &quot;Nightwish&quot; and the script should find the word and scroll down to it (and highlight)</description> <content:encoded><![CDATA[<p>i have a large page where every item is posted once. i want the user to type e.g. &#8220;Nightwish&#8221; and the script should find the word and scroll down to it (and highlight)</p> ]]></content:encoded> </item> <item><title>By: David Walsh</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-11206</link> <dc:creator>David Walsh</dc:creator> <pubDate>Wed, 12 Aug 2009 13:35:07 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-11206</guid> <description>&lt;p&gt;What would you be trying to SmoothScroll to?  The functionalities are different.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>What would you be trying to SmoothScroll to?  The functionalities are different.</p> ]]></content:encoded> </item> <item><title>By: emse</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-11205</link> <dc:creator>emse</dc:creator> <pubDate>Wed, 12 Aug 2009 13:33:57 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-11205</guid> <description>hey david
how can I combine this script with a smoothscroll? I&#039;m an absolute beginner with mootools</description> <content:encoded><![CDATA[<p>hey david<br
/> how can I combine this script with a smoothscroll? I&#8217;m an absolute beginner with mootools</p> ]]></content:encoded> </item> <item><title>By: David Walsh</title><link>http://davidwalsh.name/mootools-highlighter-search#comment-10880</link> <dc:creator>David Walsh</dc:creator> <pubDate>Thu, 30 Jul 2009 14:43:21 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=2798#comment-10880</guid> <description>&lt;p&gt;rodreego: That&#039;s a known shortcoming of the script...so far.  I&#039;ll be looking to improve it soon.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>rodreego: That&#8217;s a known shortcoming of the script&#8230;so far.  I&#8217;ll be looking to improve it soon.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 3/7 queries in 0.007 seconds using disk: basic
Object Caching 802/802 objects using disk: basic

Served from: davidwalsh.name @ 2012-05-23 09:42:43 -->
