<?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>Jason Rowe &#187; JavaScript</title>
	<atom:link href="http://jasonrowe.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonrowe.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 Sep 2010 03:30:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Carousel Control CD Collection</title>
		<link>http://jasonrowe.com/2007/07/18/carousel-control-cd-collection/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=carousel-control-cd-collection</link>
		<comments>http://jasonrowe.com/2007/07/18/carousel-control-cd-collection/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 05:29:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[YUI]]></category>

		<guid isPermaLink="false">http://rowejason.com/?p=96</guid>
		<description><![CDATA[I wanted to find an easy way to display a CD collection using javascript instead of flash. While looking around I found a YUI extension called carousel. Here is my small static example of a CD collection. Bill Scott actually &#8230; <a href="http://jasonrowe.com/2007/07/18/carousel-control-cd-collection/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://rowejason.com/search"><img style="float: left; margin: 0px 10px 10px 0px; cursor: hand" src="http://www.rowejason.com/uploaded_images/carousel_example-779114.JPG" border="0" alt="snapshot of carousel" /></a> I wanted to find an easy way to display a CD collection using javascript instead of flash. While looking around I found a YUI extension called carousel. Here is my small static example of a CD collection.</p>
<p>Bill Scott actually doesn&#8217;t support this anymore and the YUI team has taken this on. The new version is very clean and I did try it out. I converted my carousel to the new YUI version but later decided to go with a JQuery extention called jCarousel. They both worked but I think I am going to move in the Jquery direction for awhile.<br />
<a href="http://jasonrowe.com/search"> http://jasonrowe.com/search</a></p>
<p>References:<br />
<a href="http://billwscott.com/carousel/">http://billwscott.com/carousel/</a></p>
<p><a href="http://sorgalla.com/projects/jcarousel/">http://sorgalla.com/projects/jcarousel/</a></p>
<p><a href="http://developer.yahoo.com/yui/carousel/">http://developer.yahoo.com/yui/carousel/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2007/07/18/carousel-control-cd-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript: Create Advanced Web Applications With Object-Oriented Techniques</title>
		<link>http://jasonrowe.com/2007/05/07/javascript-create-advanced-web-applications-with-object-oriented-techniques/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=javascript-create-advanced-web-applications-with-object-oriented-techniques</link>
		<comments>http://jasonrowe.com/2007/05/07/javascript-create-advanced-web-applications-with-object-oriented-techniques/#comments</comments>
		<pubDate>Mon, 07 May 2007 15:47:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://rowejason.com/?p=83</guid>
		<description><![CDATA[I just started working with OOP in javascript and found this article very informative. The section on prototypes was very helpful as I have been digging around in the YUI library lately and found that area confusing. JavaScript: Create Advanced &#8230; <a href="http://jasonrowe.com/2007/05/07/javascript-create-advanced-web-applications-with-object-oriented-techniques/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just started working with OOP in javascript and found this article very informative. The section on prototypes was very helpful as I have been digging around in the YUI library lately and found that area confusing. <a href="http://msdn.microsoft.com/msdnmag/issues/07/05/javascript/default.aspx">JavaScript: Create Advanced Web Applications With Object-Oriented Techniques</a></p>
<p>The article has lots of examples if you click on the figure links. Here was a useful one on Inheriting from a Prototype:</p>
<p><code><br />
Inheriting from a Prototypefunction GreatDane() { }<br />
var rover = new GreatDane();<br />
var spot = new GreatDane();<br />
GreatDane.prototype.getBreed = function() {<br />
return “Great Dane”;<br />
};</code><code>// Works, even though at this point<br />
// rover and spot are already created.<br />
alert(rover.getBreed());<br />
// this hides getBreed() in GreatDane.prototype<br />
spot.getBreed = function() {<br />
return “Little Great Dane”;<br />
};<br />
alert(spot.getBreed());<br />
// but of course, the change to getBreed<br />
// doesn’t propagate back to GreatDane.prototype<br />
// and other objects inheriting from it,<br />
// it only happens in the spot object<br />
alert(rover.getBreed());</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2007/05/07/javascript-create-advanced-web-applications-with-object-oriented-techniques/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mouse Events onmouseout issue event bubbling</title>
		<link>http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=mouse-events-onmouseout-issue-event-bubbling</link>
		<comments>http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 23:23:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rowejason.com/?p=68</guid>
		<description><![CDATA[Quick JavaScript example to handle the onmouseout event to prevent event bubbling in IE. if(window.addEventListener) { // Mozilla, Netscape, Firefox object.addEventListener(&#8216;mouseover&#8217;,function() {this.className = &#8220;objectVisible&#8221;;false) object.addEventListener(&#8216;mouseout&#8217;,function() {this.className = &#8220;objectNotVisible&#8221;;return true;}, false)} else { // IE object.onmouseenter = function() {this.className = &#8220;objectVisible&#8221;;return &#8230; <a href="http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Quick JavaScript example to handle the onmouseout event to prevent event bubbling in IE.<br />
<blockquote>
<p>if(window.addEventListener)</p>
<p>{</p>
<p>// Mozilla, Netscape, Firefox</p>
<p>object.addEventListener(&#8216;mouseover&#8217;,function() {this.className = &#8220;objectVisible&#8221;;false)</p>
<p>object.addEventListener(&#8216;mouseout&#8217;,function() {this.className = &#8220;objectNotVisible&#8221;;return true;}, false)} </p>
<p>else { // IE</p>
<p>object.onmouseenter = function() {this.className = &#8220;objectVisible&#8221;;return false;};</p>
<p>object.onmouseleave = function() {this.className = &#8220;objectNotVisible&#8221;;return false;}; </p>
<p>}</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jasonrowe.com/2007/01/12/mouse-events-onmouseout-issue-event-bubbling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
