<?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>So Many Fish &#187; Javascript</title>
	<atom:link href="http://www.lisasawin.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lisasawin.com</link>
	<description>...which is pretty cool when you think about it...</description>
	<lastBuildDate>Mon, 07 Jun 2010 20:30:12 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Open prototip on page load</title>
		<link>http://www.lisasawin.com/2009/05/21/open-prototip-on-page-load/</link>
		<comments>http://www.lisasawin.com/2009/05/21/open-prototip-on-page-load/#comments</comments>
		<pubDate>Thu, 21 May 2009 12:21:01 +0000</pubDate>
		<dc:creator>somanyfish</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.lisasawin.com/?p=11</guid>
		<description><![CDATA[I needed a prototip to open automatically on page load.  $(&#60;id&#62;).prototip.show() should do that, but it just wasn&#8217;t working.  Nick Stankenburg over on his Prototip forum gave me some ideas, but nothing worked until I set the prototip to open on a very short delay:
if(window.location.hash == '#vote-now') {
document.observe('dom:loaded', function() {
setTimeout("$('left-vote-button').prototip.show()",100);
});
} 
]]></description>
			<content:encoded><![CDATA[<p>I needed a prototip to open automatically on page load.  $(&lt;id&gt;).prototip.show() should do that, but it just wasn&#8217;t working.  Nick Stankenburg over on his <a href="http://www.nickstakenburg.com/forum/comments.php?DiscussionID=604">Prototip forum</a> gave me some ideas, but nothing worked until I set the prototip to open on a very short delay:<br />
<code>if(window.location.hash == '#vote-now') {<br />
document.observe('dom:loaded', function() {<br />
setTimeout("$('left-vote-button').prototip.show()",100);<br />
});<br />
} </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lisasawin.com/2009/05/21/open-prototip-on-page-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
