<?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: The Clickable SPAN</title>
	<atom:link href="http://blog.perplexedlabs.com/2008/02/05/the-clickable-span/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.perplexedlabs.com/2008/02/05/the-clickable-span/</link>
	<description>web development war stories from the frontlines to the backend</description>
	<lastBuildDate>Sat, 29 Oct 2011 10:05:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: mbriedis</title>
		<link>http://blog.perplexedlabs.com/2008/02/05/the-clickable-span/comment-page-1/#comment-2742</link>
		<dc:creator>mbriedis</dc:creator>
		<pubDate>Thu, 05 Nov 2009 16:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://perplexedlabs.com/2008/02/05/the-clickable-span/#comment-2742</guid>
		<description>Hmm, I thinking of a better solution.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;#&quot; onclick=&quot;return myFunc();&quot;&gt;Link&lt; /a&gt;&lt;br&gt;&lt;br&gt;href attribute fill fire only when the result of onclick will be true (will no be false)&lt;br&gt;&lt;br&gt;just write your function like this:&lt;br&gt;function myFun(){&lt;br&gt; //code&lt;br&gt; return false;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;br&gt;or &lt;a href=&quot;#&quot; onclick=&quot;myFunc(); return false;&quot;&gt;link&lt; /a&gt;&lt;br&gt;&lt;br&gt;That won&#039;t make the jump to the top of the page...&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Martin</description>
		<content:encoded><![CDATA[<p>Hmm, I thinking of a better solution.</p>
<p>&lt;a href=&#8221;#&#8221; onclick=&#8221;return myFunc();&#8221;&gt;Link&lt; /a&gt;</p>
<p>href attribute fill fire only when the result of onclick will be true (will no be false)</p>
<p>just write your function like this:<br />function myFun(){<br /> //code<br /> return false;<br />}</p>
<p>or &lt;a href=&#8221;#&#8221; onclick=&#8221;myFunc(); return false;&#8221;&gt;link&lt; /a&gt;</p>
<p>That won&#39;t make the jump to the top of the page&#8230;</p>
<p>Regards,<br />Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mbriedis</title>
		<link>http://blog.perplexedlabs.com/2008/02/05/the-clickable-span/comment-page-1/#comment-2704</link>
		<dc:creator>mbriedis</dc:creator>
		<pubDate>Thu, 05 Nov 2009 11:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://perplexedlabs.com/2008/02/05/the-clickable-span/#comment-2704</guid>
		<description>Hmm, I thinking of a better solution.&lt;br&gt;&lt;br&gt;&lt;a href=&quot;#&quot; onclick=&quot;return myFunc();&quot;&gt;Link&lt;/a&gt;&lt;br&gt;&lt;br&gt;href attribute fill fire only when the result of onclick will be true (will no be false)&lt;br&gt;&lt;br&gt;just write your function like this:&lt;br&gt;function myFun(){&lt;br&gt; //code&lt;br&gt; return false;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;br&gt;or &lt;a href=&quot;#&quot; onclick=&quot;myFunc(); return false;&quot;&gt;link&lt;/link&gt;&lt;br&gt;&lt;br&gt;That won&#039;t make the jump to the top of the page...&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Martin</description>
		<content:encoded><![CDATA[<p>Hmm, I thinking of a better solution.</p>
<p>&lt;a href=&#8221;#&#8221; onclick=&#8221;return myFunc();&#8221;&gt;Link</p>
<p>href attribute fill fire only when the result of onclick will be true (will no be false)</p>
<p>just write your function like this:<br />function myFun(){<br /> //code<br /> return false;<br />}</p>
<p>or &lt;a href=&#8221;#&#8221; onclick=&#8221;myFunc(); return false;&#8221;&gt;link&lt;/link&gt;</p>
<p>That won&#39;t make the jump to the top of the page&#8230;</p>
<p>Regards,<br />Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://blog.perplexedlabs.com/2008/02/05/the-clickable-span/comment-page-1/#comment-580</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Mon, 19 Jan 2009 13:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://perplexedlabs.com/2008/02/05/the-clickable-span/#comment-580</guid>
		<description>That&#039;s exactly what we&#039;ve done here!</description>
		<content:encoded><![CDATA[<p>That&#8217;s exactly what we&#8217;ve done here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joff</title>
		<link>http://blog.perplexedlabs.com/2008/02/05/the-clickable-span/comment-page-1/#comment-576</link>
		<dc:creator>Joff</dc:creator>
		<pubDate>Mon, 19 Jan 2009 01:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://perplexedlabs.com/2008/02/05/the-clickable-span/#comment-576</guid>
		<description>Instead of the &quot;#&quot; within the href, try it with &quot;javascript;&quot; instead.  This won&#039;t cause the page to jump back to the top each time.</description>
		<content:encoded><![CDATA[<p>Instead of the &#8220;#&#8221; within the href, try it with &#8220;javascript;&#8221; instead.  This won&#8217;t cause the page to jump back to the top each time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

