October 22, 2008
Thickbox iframe onload
$(document).ready(function(){
tb_show('title here','/page.html?keepThis=true&TB_iframe=true&height=260&width=400');
});
October 21, 2008
comma – fullstop xsl
<xsl:for-each select="/page/contentframe/pageerrors/error">
<xsl:value-of select="@value"/>
<xsl:if test="position() < last()-1">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:if test="position()=last()-1">
<xsl:text>, and </xsl:text>
</xsl:if>
<xsl:if test="position()=last()">
<xsl:text>!</xsl:text>
</xsl:if>
</xsl:for-each>