<?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>Justin's Tech Blog &#187; Javascript</title>
	<atom:link href="http://www.sofee.cn/blog/category/technical/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sofee.cn/blog</link>
	<description>世界其实很简单，复杂的是人；生活其实很轻松，沉重的是感情！</description>
	<lastBuildDate>Sun, 17 Jan 2010 17:17:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery 1.1.4 发布了！</title>
		<link>http://www.sofee.cn/blog/2007/08/25/101/</link>
		<comments>http://www.sofee.cn/blog/2007/08/25/101/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 13:17:28 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[dojo]]></category>
		<category><![CDATA[ext-js]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://www.sofee.cn/blog/2007/08/25/101/</guid>
		<description><![CDATA[jQuery 1.1.4发布了，作为1.1.x分支的最后一个版本，之后发布的版本就会是1.2版了。
从介绍来看，这个版本与1.1.3.1版的区别主要还是速度和性能上的大幅提升（特别是selector部分，提升非常大），以及BUG的修复。文件的大小似乎也慢慢开始大起来了，1.1.4版已加到21K了&#8230;
更多资料请访问jQuery官方网站：jQuery.com。

  addthis_url    = 'http%3A%2F%2Fwww.sofee.cn%2Fblog%2F2007%2F08%2F25%2F101%2F';
  addthis_title  = 'jQuery+1.1.4+%E5%8F%91%E5%B8%83%E4%BA%86%EF%BC%81';
  addthis_pub    = 'sofeecn';

]]></description>
		<wfw:commentRss>http://www.sofee.cn/blog/2007/08/25/101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splitter without frame</title>
		<link>http://www.sofee.cn/blog/2006/06/26/15/</link>
		<comments>http://www.sofee.cn/blog/2006/06/26/15/#comments</comments>
		<pubDate>Mon, 26 Jun 2006 15:00:33 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.sofee.cn/blog/?p=15</guid>
		<description><![CDATA[ 
var alimama_pid="mm_10006029_103557_106167"; 
var alimama_titlecolor="8ab459"; 
var alimama_descolor ="888888"; 
var alimama_bgcolor="FFFFFF"; 
var alimama_bordercolor="ffffff"; 
var alimama_linkcolor="8ab459"; 
var alimama_sizecode="12"; 
var alimama_width=468; 
var alimama_height=60; 
var alimama_type=2; 
 
 
 

&#60;html&#62;
&#60;head&#62;
&#60;script language=&#34;javascript&#34;&#62;
&#60;!--
var bInDrag = false;
var iSplitHeight = 20;
var iBrowserHeight = 400;
&#160;
function initDrag(obj) {
	bInDrag = true;
	obj.setCapture();
}
&#160;
function freeDrag(obj) {
	bInDrag = false;
	obj.releaseCapture();
}
&#160;
function doDrag() {
	var iMoveHeight = 0;
	if (bInDrag) {
		iMoveHeight = event.clientY - document.getElementById('splitLine').style.pixelTop;
		document.getElementById('head').style.pixelHeight [...]]]></description>
		<wfw:commentRss>http://www.sofee.cn/blog/2006/06/26/15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[老文章]设置一行颜色的效果</title>
		<link>http://www.sofee.cn/blog/2005/06/17/63/</link>
		<comments>http://www.sofee.cn/blog/2005/06/17/63/#comments</comments>
		<pubDate>Thu, 16 Jun 2005 17:06:13 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.sofee.cn/blog/2005/06/17/63/</guid>
		<description><![CDATA[
&#60;html&#62;
&#60;head&#62;
&#60;script language=&#34;javascript&#34;&#62;
&#60;!--
/**
* 用于标记已点击的行
*
* @access public
* @var  integer
*/
var oldRowNum = null;
&#160;
/**
* 改变行颜色
*
* 实现原理：点击一行后，则标记该行已点击过，这样触发over或out事件的时候就不设置颜色了。
*
* @access  public
* @param  object  [theObject] 产生事件的那一行的对象
* @param  integer  [theRowNum] 行数
* @param  string  [theAction] 事件名称，取值为：over, out, click
* @param  string  [theDefaultColor] 默认的颜色
* @param  string  [theNewColor] 要设置的颜色
* @return  void
*/
function changeRowColor(theObject, theRowNum, theAction, theDefaultColor, [...]]]></description>
		<wfw:commentRss>http://www.sofee.cn/blog/2005/06/17/63/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[老文章]PHP &amp; XUL</title>
		<link>http://www.sofee.cn/blog/2004/08/30/65/</link>
		<comments>http://www.sofee.cn/blog/2004/08/30/65/#comments</comments>
		<pubDate>Mon, 30 Aug 2004 11:26:22 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[XUL]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://www.sofee.cn/blog/2004/08/30/65/</guid>
		<description><![CDATA[很早就知道XUL是什么东西，但一直未用过，直到今天在David Sklar的BLOG上看到这篇关于XUL的文章（Creating Rich Applications with Mozilla, XUL, and AMP Technology）。
一、什么是XUL？
XUL即XML-based User Interface Language的缩写，是一种基于XML的界面设计语言，提供了各种各样的元件(elements)和物件(widgets)。它可以在 Mozilla 家族的所有产品中运行。
其实就跟微软大势宣扬的XAML一样，未来没有C/S或者B/S可言。至于XUL和XAML这两者谁效仿谁，就不是我们这些最终用户该研究的了:)

二、牛刀小试

&#60;?php
function genFunctionPanel&#40;&#41; &#123;
  $exts = get_loaded_extensions&#40;&#41;;
  natsort&#40;$exts&#41;;
  $xul = '&#60;tree flex=&#34;1&#34;&#62;
      &#60;treecols&#62;
        &#60;treecol label=&#34;函数列表&#34; flex=&#34;1&#34; primary=&#34;true&#34;/&#62;
      &#60;/treecols&#62;
     [...]]]></description>
		<wfw:commentRss>http://www.sofee.cn/blog/2004/08/30/65/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
