<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="ARTICLE @ XOOPS powered by FeedCreator" -->
<rss version="0.91">
    <channel>
        <title>Labs XooFoo :: Blog</title>
        <description><![CDATA[XML pour le blog HedgerWow]]></description>
        <link>http://labs.xoofoo.org/modules/planet/index.php/b40</link>
        <lastBuildDate>Fri, 25 May 2012 10:44:03 +0200</lastBuildDate>
        <generator>ARTICLE @ XOOPS powered by FeedCreator</generator>
        <image>
            <url>http://labs.xoofoo.org/modules/planet/images/logo.png</url>
            <title>Labs XooFoo :: Blog</title>
            <link>http://labs.xoofoo.org/modules/planet/</link>
            <width>80</width>
            <height>15</height>
            <description>XML pour le blog HedgerWow</description>
        </image>
        <language>fr</language>
        <managingEditor>labs at xoofoo dot org</managingEditor>
        <webMaster>labs at xoofoo dot org</webMaster>
        <category>LabsSphère</category>
        <item>
            <title>Will be moving to http://hedgerwow.blogspot.com/ in 3 days.</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/12472</link>
            <description><![CDATA[<p>Dear all.</p><br /><p>I am done with DreamHost and will move to<a href="http://hedgerwow.blogspot.com/"> <a href="http://hedgerwow.blogspot.com/" title="http://hedgerwow.blogspot.com/" target="_blank">http://hedgerwow.blogspot.com/</a></a><br /><br />Maybe I shall get a new domain or keep the existing one.</p><br /><p>See you soon <img src='http://www.blog.hedgerwow.com/wp-includes/images/smilies/icon_smile.gif' alt='<img src="http://labs.xoofoo.org/uploads/smil3dbd4d6422f04.gif" alt="" />' class='wp-smiley' /> </p><br />Source: http://blog.hedgerwow.com/2009/11/23/will-be-moving-to-httphedgerwow-blogspot-com-in-3-days/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Mon, 23 Nov 2009 09:07:41 +0200</pubDate>
        </item>
        <item>
            <title>Preview image inline before uploading.</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/11054</link>
            <description><![CDATA[<p>I hope HTML5 and Google Gear could do this thing better <img src='http://www.blog.hedgerwow.com/wp-includes/images/smilies/icon_smile.gif' alt='<img src="http://labs.xoofoo.org/uploads/smil3dbd4d6422f04.gif" alt="" />' class='wp-smiley' /><br /><br /><a href="http://hedgerwow.appspot.com/image-upload-preview/demo.html "><a href="http://hedgerwow.appspot.com/image-upload-preview/demo.html" title="http://hedgerwow.appspot.com/image-upload-preview/demo.html" target="_blank">http://hedgerwow.appspot.com/image-upload-preview/demo.html</a> </a><br /></p><br />Source: http://blog.hedgerwow.com/2009/06/03/preview-image-inline-before-uploading/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Thu, 04 Jun 2009 09:12:55 +0200</pubDate>
        </item>
        <item>
            <title>JOT: The JavaScript Object Template</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/10908</link>
            <description><![CDATA[<p><a href="http://code.google.com/p/jot-project/wiki/SyntaxAndHowTos"><a href="http://code.google.com/p/jot-project/wiki/SyntaxAndHowTos" title="http://code.google.com/p/jot-project/wiki/SyntaxAndHowTos" target="_blank">http://code.google.com/p/jot-project/wiki/SyntaxAndHowTos</a></a> <img src='http://www.blog.hedgerwow.com/wp-includes/images/smilies/icon_smile.gif' alt='<img src="http://labs.xoofoo.org/uploads/smil3dbd4d6422f04.gif" alt="" />' class='wp-smiley' />  , still beta.</p><br /><p>Hope you&#8217;d like it.<br /></p><br />Source: http://blog.hedgerwow.com/2009/05/19/jot-the-javascript-object-template/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Tue, 19 May 2009 23:05:56 +0200</pubDate>
        </item>
        <item>
            <title>Found a new JS pattern from MSDN.</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/10739</link>
            <description><![CDATA[<p>One day, I was trying to detect whether an element is an element that has no close tag.<br /><br />So I did this:</p><br /><p>var tagName = el.tagName.toLowerCase();<br /><br />if( tagName == &#8216;img&#8217; || tagName == &#8216;br&#8217; || tagName == &#8216;input&#8217;  || tagName == &#8216;embed &#8216; ){<br /><br />// This is just a example, not all single tags are tested. These tags are :<br /><br />// area,base,basefont,br,col,frame,hr,img,input,isindex,link,meta,param,embed.<br /><br />// Do something here.<br /><br />}</p><br /><p>Well, this is not that efficient to write your program.<br /><br />So I switch to use a string map, which is rather simple and John Resig <a href="http://ejohn.org/files/htmlparser.js">uses </a>the same trick in his <a href="http://ejohn.org/blog/pure-javascript-html-parser/">HTML Parser.</a></p><br /><p>var map = makeMap(&#8217;area,base,basefont,br,col,frame,hr,img,input,isindex,link,meta,param,embed&#8217;);<br /><br />if( map[tagName]){<br /><br />// Do something here.<br /><br />}</p><br /><p>Of course we can use RegExp to test it, just like many others did.</p><br /><p>var reg = /^(area|base|basefont|br|col|frame|hr|img|input|isindex|link|meta|param|embed)$/i;<br /><br />var tagName = &#8216;BR&#8217;;<br /><br />if( reg.test(tagName)){<br /><br />// Do something&#8230;<br /><br />}</p><br /><p>and maybe you can find more tricks that solve the same problem with low cost, but below is the most interesting one that caught my attention.</p><br /><p>if ( tagName != &#8220;BUTTON&#8221; | &#8220;B&#8221; | &#8220;A&#8221; ){<br /><br />// Do something&#8230;<br /><br />}</p><br /><p>Wait, this seems really strange to me and seems not to perform as what I was expecting.<br /><br />However, since I found this code snippets from <a href="http://msdn.microsoft.com/en-us/library/ms537630(VS.85).aspx">MSDN</a>, there must be something magic which makes this working.</p><br /><p><img title="js code snippets" alt="js code snippets" src="http://www.hedgerwow.com/360/dhtml/ms-crappy-js.png" /></p><br /><p>Unfortunately, this is simply not working though I almost thought I found a new JS pattern from MSDN and was very excited about it for just about 10 seconds.</p><br /><p>It&#8217;s fun to learn JS from microsoft.</p><br /><blockquote /><br /><blockquote /><br />Source: http://blog.hedgerwow.com/2009/04/30/found-a-new-js-pattern-from-msdn/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Thu, 30 Apr 2009 22:36:26 +0200</pubDate>
        </item>
        <item>
            <title>update:Cross Browser Base64 Encoded Images Embedded in HTML</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/10614</link>
            <description><![CDATA[<p><a href="http://www.hedgerwow.com/360/dhtml/base64-image/demo.php "><a href="http://www.hedgerwow.com/360/dhtml/base64-image/demo.php" title="http://www.hedgerwow.com/360/dhtml/base64-image/demo.php" target="_blank">http://www.hedgerwow.com/360/dhtml/base64-image/demo.php</a> </a><br /></p><br />Source: http://blog.hedgerwow.com/2009/04/16/updatecross-browser-base64-encoded-images-embedded-in-html/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Fri, 17 Apr 2009 06:57:58 +0200</pubDate>
        </item>
        <item>
            <title>Notes from stylesheet-debug.js</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/10212</link>
            <description><![CDATA[<div>Below are the notes from the newly released  <a href="http://developer.yahoo.com/yui/stylesheet/">YUI version 2.7.0 stylesheet.js</a><br /><br />and the notes from its source probably explains why web development is  too tricky to deal with.</div><br /><pre style="font-family: courier new,monospace"><br /><pre style="font-family: courier new,monospace"><br /><pre style="font-family: courier new,monospace"><font size="2">Adapted from  tylesheet-debug.js&#8230;..</font></pre><br /><pre style="font-family: courier new,monospace"><font size="2">/*</font></pre><br /><pre style="font-family: courier new,monospace"><font size="2">Copyright (c) 2009, Yahoo! Inc. All rights reserved.<br />Code licensed under the BSD License:<br /><a href="http://developer.yahoo.net/yui/license.txt" title="http://developer.yahoo.net/yui/license.txt" target="_blank">http://developer.yahoo.net/yui/license.txt</a><br />version: 2.7.0</font></pre><br /><p>*/</p><br /><pre style="font-family: courier new,monospace"><br /><pre style="font-family: courier new,monospace"><font size="2"><br />* Style node must be added to the head element.  Safari does not honor styles<br />applied to StyleSheet objects on style nodes in the body.<br />* StyleSheet object is created on the style node when the style node is added<br /><br />to the head element in Firefox 2 (and maybe 3?)<br />* The cssRules collection is replaced after insertRule/deleteRule calls in<br />Safari 3.1.  Existing Rules are used in the new collection, so the collection<br />cannot be cached, but the rules can be.<br /><br />* Opera requires that the index be passed with insertRule.<br />* Same-domain restrictions prevent modifying StyleSheet objects attached to<br />link elements with remote href (or &#8220;about :blank&#8221; or &#8220;(script removed)false&#8221;)<br /><br />* Same-domain restrictions prevent reading StyleSheet cssRules/rules<br />collection of link elements with remote href (or &#8220;about :blank&#8221; or<br />&#8220;(script removed)false&#8221;)<br />* Same-domain restrictions result in Safari not populating node.sheet property<br /><br />for link elements with remote href (<a target="_blank" href="http://et.al/">et.al</a>)<br />* IE names StyleSheet related properties and methods differently (see code)<br />* IE converts tag names to upper case in the Rule&#8217;s selectorText<br /><br />* IE converts empty string assignment to complex properties to value settings<br />for all child properties.  E.g. style.background = &#8216;&#8217; sets non-'&#8217; values on<br />style.backgroundPosition, style.backgroundColor, etc.  All else clear<br /><br />style.background and all child properties.<br />* IE assignment style.filter = &#8216;&#8217; will result in style.cssText == &#8216;FILTER:&#8217;<br />* All browsers support Rule.style.cssText as a read/write property, leaving<br /><br />only opacity needing to be accounted for.<br />* Benchmarks of style.property = value vs style.cssText += &#8216;property: value&#8217;<br />indicate cssText is slightly slower for single property assignment.  For<br />multiple property assignment, cssText speed stays relatively the same where<br /><br />style.property speed decreases linearly by the number of properties set.<br />Exception being Opera 9.27, where style.property is always faster than<br />style.cssText.<br />* Opera 9.5b throws a syntax error when assigning cssText with a syntax error.<br /><br />* Opera 9.5 doesn&#8217;t honor rule.style.cssText = &#8216;&#8217;.  Previous style persists.<br />You have to remove the rule altogether.<br />* Stylesheet properties set with !important will trump inline style set on an<br /><br />element or in el.style.property.<br />* Creating a worker style collection like document.createElement(&#8217;p').style;<br />will fail after a time in FF (~5secs of inactivity).  Property assignments<br />will not alter the property or cssText.  It may be the generated node is<br /><br />garbage collected and the style collection becomes inert (speculation).<br />* IE locks up when attempting to add a rule with a selector including at least<br />characters {[]}~`!@%^&#038;*()+=|? (unescaped) and leading _ or -<br /><br />such as addRule(&#8217;-foo&#8217;,'{ color: red }&#8217;) or addRule(&#8217;._abc&#8217;,'{&#8230;}&#8217;)<br />* IE&#8217;s addRule doesn&#8217;t support comma separated selectors such as<br />addRule(&#8217;.foo, .bar&#8217;,'{..}&#8217;)<br /><br />* IE throws an error on valid values with leading/trailing white space.<br />* When creating an entire sheet at once, only FF2/3 &#038; Opera allow creating a<br />style node, setting its innerHTML and appending to head.<br /><br />* When creating an entire sheet at once, Safari requires the style node to be<br />created with content in innerHTML of another element.<br />* When creating an entire sheet at once, IE requires the style node content to<br /><br />be set via node.styleSheet.cssText<br />* When creating an entire sheet at once in IE, styleSheet.cssText can&#8217;t be<br />written until node.type = &#8216;text/css&#8217;; is performed.<br />* When creating an entire sheet at once in IE, load-time fork on<br /><br />var styleNode = d.createElement(&#8217;style&#8217;); _method = styleNode.styleSheet ?..<br />fails (falsey).  During run-time, the test for .styleSheet works fine<br />* Setting complex properties in cssText will SOMETIMES allow child properties<br /><br />to be unset<br />set         unset              FF2  FF3  S3.1  IE6  IE7  Op9.27  Op9.5<br />&#8212;&#8212;&#8212;-  &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;  &#8212;  &#8212;  &#8212;-  &#8212;  &#8212;  &#8212;&#8212;  &#8212;&#8211;<br />border      -top               NO   NO   YES   YES  YES  YES     YES<br /><br />-top-color         NO   NO   YES             YES     YES<br />-color             NO   NO   NO              NO      NO<br />background  -color             NO   NO   YES             YES     YES<br /><br />-position          NO   NO   YES             YES     YES<br />-position-x        NO   NO   NO              NO      NO<br />font        line-height        YES  YES  NO    NO   NO   NO      YES<br /><br />-style             YES  YES  NO              YES     YES<br />-size              YES  YES  NO              YES     YES<br />-size-adjust       ???  ???  n/a   n/a  n/a  ???     ???<br /><br />padding     -top               NO   NO   YES             YES     YES<br />margin      -top               NO   NO   YES             YES     YES<br />list-style  -type              YES  YES  YES             YES     YES<br /><br />-position          YES  YES  YES             YES     YES<br />overflow    -x                 NO   NO   YES             n/a     YES<br /><br />??? - unsetting font-size-adjust has the same effect as unsetting font-size<br /><br />* FireFox and WebKit populate rule.cssText as &#8220;SELECTOR { CSSTEXT }&#8221;, but<br />Opera and IE do not.<br />* IE6 and IE7 silently ignore the { and } if passed into addRule(&#8217;.foo&#8217;,'{<br />color:#000}&#8217;,0).  IE8 does not and creates an empty rule.<br /><br />* IE6-8 addRule(&#8217;.foo&#8217;,'&#8217;,n) throws an error.  Must supply *some* cssText<br />*/</font></pre><br /></pre><br /></pre><br /></pre><br />Source: http://blog.hedgerwow.com/2009/02/20/notes-from-stylesheet-debugjs/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Fri, 20 Feb 2009 20:35:18 +0200</pubDate>
        </item>
        <item>
            <title>Be careful with  getComputedStyle</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/10202</link>
            <description><![CDATA[<p>Sometimes you really need to check whether an element is in the document already before calling some DOM methods.<br /><br />See <a href="http://www.hedgerwow.com/360/bugs/dom-get-computed-style.php "><a href="http://www.hedgerwow.com/360/bugs/dom-get-computed-style.php" title="http://www.hedgerwow.com/360/bugs/dom-get-computed-style.php" target="_blank">http://www.hedgerwow.com/360/bugs/dom-get-computed-style.php</a> </a><br /></p><br />Source: http://blog.hedgerwow.com/2009/02/19/be-careful-with-getcomputedstyle/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Fri, 20 Feb 2009 08:07:03 +0200</pubDate>
        </item>
        <item>
            <title>Imageless Fuzzy Shadows with CSS + HTML</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/9577</link>
            <description><![CDATA[<p>It&#8217;s fun to play with CSS over 10 years.<br /><br />Year 1999: filter:blur();<br /><br />Year 2009: background:url(data:image/png;base64);<br /><br /><a href="http://www.hedgerwow.com/360/dhtml/css_fuzzy_shadow/demo.php"><a href="http://www.hedgerwow.com/360/dhtml/css_fuzzy_shadow/demo.php" title="http://www.hedgerwow.com/360/dhtml/css_fuzzy_shadow/demo.php" target="_blank">http://www.hedgerwow.com/360/dhtml/css_fuzzy_shadow/demo.php</a></a></p><br /><p><img src="http://labs.xoofoo.org/uploads/smil3dbd4d6422f04.gif" alt="" /><br /></p><br />Source: http://blog.hedgerwow.com/2008/12/05/imageless-fuzzy-shadows-with-css-html/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Sat, 06 Dec 2008 02:41:55 +0200</pubDate>
        </item>
        <item>
            <title>What new Chief Technology Officer of the US need to do?</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/9166</link>
            <description><![CDATA[<p><strong>Banning the use of IE6. </strong><br /><br />I do believe it&#8217;s just the right time to do the right change to make the internet faster, greener, cheaper, which helps to boost the poor economy.<br /></p><br />Source: http://blog.hedgerwow.com/2008/10/26/what-new-chief-technology-officer-of-the-us-need-to-do/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Sun, 26 Oct 2008 22:16:29 +0200</pubDate>
        </item>
        <item>
            <title>Choosing a DOCTYPE that is just simple and strict</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/9073</link>
            <description><![CDATA[<p>I did not know this trick until I view the HTML source of<br /><br /><a href="http://www.google.com/search?client=safari&#038;rls=en-us&#038;q=randomly+search+result&#038;ie=UTF-8&#038;oe=UTF-8"><br /><br />a randomly search</a> result from google</p><br /><p></p><br /><p><a href="http://www.hedgerwow.com/360/dhtml/short_doc_type.html"><br /><br /><a href="http://www.hedgerwow.com/360/dhtml/short_doc_type.html" title="http://www.hedgerwow.com/360/dhtml/short_doc_type.html" target="_blank">http://www.hedgerwow.com/360/dhtml/short_doc_type.html</a><br /><br /></a></p><br />Source: http://blog.hedgerwow.com/2008/10/16/choosing-a-doctype-that-is-just-simple-and-strict/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Fri, 17 Oct 2008 00:53:25 +0200</pubDate>
        </item>
        <item>
            <title>YAHOO.onBeforeUnload</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/8730</link>
            <description><![CDATA[<p>Just like most people, I like to travel whenever I have the opportunity to explore and experience the whole world.</p><br /><p>I want to know more things, and I want to experience more things as well.</p><br /><p>I had  been to some great places in my past traveling and I always heard some great stories about some other very interesting and attractive destinations from people from varies places  which always caught my and gives me more energy to move forward to the next new stop.</p><br /><p>3 years ago, after working in Yahoo! Taiwan for a while, I had the chance to be transferred to Yahoo! US and started my career as a front-end engineer in Silicon Valley, one of the most amazing places where you can definitely see the abundance of the creativity and energy of human intelligence .</p><br /><p>For me, Yahoo! had been a great place  to work for through the past few years, and I will definitely it put it on my fav list  of the best companies to work for.</p><br /><p>It&#8217;s indeed  a wonderful thing for me to have a decent  job in Yahoo, to be able to meet more nice friends and to achieve my career goal here especially I&#8217;m an alien worker who rarely speaks English and drive cars before coming to the USA.</p><br /><p>I&#8217;m much luckier than I think I&#8217;m.</p><br /><p>So there is another great chance showing up for me to switch to the next  company unexpectedly.</p><br /><p>I think I should know about the next company well since I had been told a lot great and exciting things about this company either from the media, the people who work there or simply from the words of mouth and I had decided to step into this company instead of keeping myself as an outsider from that company..</p><br /><p>It&#8217;s time to move on for me.</p><br /><p>I&#8217;d thank for all the love, kindness and dedication of all my co-workers in Yahoo!, which is truly an amazing and unforgettable experience and I will always be proud of being a members of Yahoos.</p><br /><p>9/12 is my last day in Yahoo, and I&#8217;d start my new job in Google by 9/22.</p><br /><p>My personal contacts info are below:<br /><br />Feel free to add me as your contact.</p><br /><p>Email : <a target="_blank" href="mailto:hedgerwang@gmail.com">hedgerwang  (at) gmail.com</a><br /><br />LinkedIn : <a target="_blank" href="http://www.linkedin.com/in/hedgerwang"><a href="http://www.linkedin.com/in/hedgerwang" title="http://www.linkedin.com/in/hedgerwang" target="_blank">http://www.linkedin.com/in/hedgerwang</a></a><br /><br />Flickr : <a target="_blank" href="http://www.flickr.com/photos/hedger"><a href="http://www.flickr.com/photos/hedger" title="http://www.flickr.com/photos/hedger" target="_blank">http://www.flickr.com/photos/hedger</a></a><br /><br />BLOG : <a target="_blank" href="http://www.hedgerwow.com/"><a href="http://www.hedgerwow.com/" title="http://www.hedgerwow.com/" target="_blank">http://www.hedgerwow.com/</a></a></p><br /><p>Cheers and best wishes for all.</p><br /><p>Hedger.<br /></p><br />Source: http://blog.hedgerwow.com/2008/09/11/yahooonbeforeunload/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Thu, 11 Sep 2008 23:57:31 +0200</pubDate>
        </item>
        <item>
            <title>How to display some HTMLs only when JavaScript is enabled?</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/8224</link>
            <description><![CDATA[<p>innerHTML rules!<br /><br /><a href="http://www.hedgerwow.com/360/dhtml/html-yesjs.html"><a href="http://www.hedgerwow.com/360/dhtml/html-yesjs.html" title="http://www.hedgerwow.com/360/dhtml/html-yesjs.html" target="_blank">http://www.hedgerwow.com/360/dhtml/html-yesjs.html</a></a><br /></p><br />Source: http://blog.hedgerwow.com/2008/07/31/how-to-display-some-htmls-only-when-javascript-is-enabled/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Fri, 01 Aug 2008 01:06:12 +0200</pubDate>
        </item>
        <item>
            <title>A JavaScript Bug of SpiderMonkey on Firefox</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/8147</link>
            <description><![CDATA[<p>Hopefully, we&#8217;re safe from this kind of problems..<a href="http://www.hedgerwow.com/360/bugs/js-spider-monkey-bug.html"><br /><br /><a href="http://www.hedgerwow.com/360/bugs/js-spider-monkey-bug.html" title="http://www.hedgerwow.com/360/bugs/js-spider-monkey-bug.html" target="_blank">http://www.hedgerwow.com/360/bugs/js-spider-monkey-bug.html</a></a><br /></p><br />Source: http://blog.hedgerwow.com/2008/07/24/a-javascript-bug-of-spidermonkey-on-firefox/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Fri, 25 Jul 2008 04:24:49 +0200</pubDate>
        </item>
        <item>
            <title>In case you need to implement min-width for IE6</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/8039</link>
            <description><![CDATA[<p>I&#8217;ve <a href="http://www.hedgerwow.com/360/bugs/css-only-min_width_ie6_2..html">posted a example</a> about make min-width work on IE6 before, and this post is about giving you a bare bone template with min-width support so that you can simply grab the code for your layout easily.</p><br /><p>Though the CSS / HTML seems tricky for some developers, I still think this a far better solution than the extremely expensive <a href="http://www.google.com/search?hl=en&#038;safe=off&#038;client=firefox-a&#038;rls=org.mozilla%3Aen-US%3Aofficial&#038;hs=dlO&#038;q=expression%28%29+%22min-width%22&#038;btnG=Search">expression()</a>; solution.<br /><br />the template is available here <a href="http://www.hedgerwow.com/360/bugs/css-only-min_width_ie6_2..html"><a href="http://www.hedgerwow.com/360/bugs/css-only-min_width_ie6_2..html" title="http://www.hedgerwow.com/360/bugs/css-only-min_width_ie6_2..html" target="_blank">http://www.hedgerwow.com/360/bugs/css-only-min_width_ie6_2..html</a></a></p><br /><p>Cheers<br /></p><br />Source: http://blog.hedgerwow.com/2008/07/09/in-case-you-need-to-implement-min-width-for-ie6/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Thu, 10 Jul 2008 01:37:52 +0200</pubDate>
        </item>
        <item>
            <title>Stable Array.sort</title>
            <link>http://labs.xoofoo.org/modules/planet/view.article.php/7963</link>
            <description><![CDATA[<p>I&#8217;d think that stable sorting does matter for most sortable UI, and it&#8217;s better to let JS to do it natively since we use JS a lot to make UI sortable.<br /><br /><a href="http://www.hedgerwow.com/360/dhtml/js_array_stable_sort.html"><a href="http://www.hedgerwow.com/360/dhtml/js_array_stable_sort.html" title="http://www.hedgerwow.com/360/dhtml/js_array_stable_sort.html" target="_blank">http://www.hedgerwow.com/360/dhtml/js_array_stable_sort.html</a></a><br /></p><br />Source: http://blog.hedgerwow.com/2008/07/01/stable-arraysort/ hedgerwang]]></description>
            <author>hedgerwang</author>
            <pubDate>Tue, 01 Jul 2008 21:41:41 +0200</pubDate>
        </item>
    </channel>
</rss>
