<?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>phill84.org &#187; javascript</title>
	<atom:link href="http://phill84.org/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://phill84.org</link>
	<description>System.out.print</description>
	<lastBuildDate>Sat, 26 Mar 2011 10:21:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Correction of Listing 2-25 in Pro Javascript Techniques</title>
		<link>http://phill84.org/2011/03/correction-of-listing-2-25-in-pro-javascript-techniques/</link>
		<comments>http://phill84.org/2011/03/correction-of-listing-2-25-in-pro-javascript-techniques/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 22:49:42 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[privileged method]]></category>

		<guid isPermaLink="false">http://phill84.org/?p=6257</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">function User(properties) {
        for (var i in properties) {
                (function(){
                        var key = i;
                        this['get' + key] = function() {
                                return properties[key];
                        };
                        this['set' + key] = function(val) {
                                properties[key];
                        };
                }).call(this);
        }
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2011/03/correction-of-listing-2-25-in-pro-javascript-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loading bar added</title>
		<link>http://phill84.org/2009/04/loading-bar-added/</link>
		<comments>http://phill84.org/2009/04/loading-bar-added/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 15:20:20 +0000</pubDate>
		<dc:creator>phill84</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[loading bar]]></category>

		<guid isPermaLink="false">http://phill84.org/2009/04/loading-bar-added/</guid>
		<description><![CDATA[In the beginning I was gonna make the loading bar which would depend on the loading progress of images on the page, but later on it seemed a bit too advanced for me&#8230; so I just used another easy implementation &#8230; <a href="http://phill84.org/2009/04/loading-bar-added/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In the beginning I was gonna make the loading bar which would depend on the loading progress of images on the page, but later on it seemed a bit too advanced for me&#8230;</p>
<p>so I just used another easy implementation</p>
<p>ideas were taken from <a href="http://ishawn.net/tips/loading-status-bar.html">jQuery 页面载入进度条</a> and <a href="http://yensdesign.com/2008/11/how-to-create-a-stylish-loading-bar-as-gmail-in-javascript/">How to create a stylish loading bar as Gmail in javascript</a></p>
]]></content:encoded>
			<wfw:commentRss>http://phill84.org/2009/04/loading-bar-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

