Some good ideas here. How about getting a tooltip to appear when mousing over an <option> tag or a <select> element? I have the problem of a fixed sized select control where I can't view the entire text of some options. thanks!
Try: preceding-sibling::node()[position()-1]
The preceding-sibling specifies all previous nodes on the same axis - including namespaces and attributes. Using "node()" will exclude those.
- Ted
This question regards the MS default msxml parser in IE. I have seen this function used in code (date()), but I can't find any documentation on it. I suppose it converts a string to a date datatype. Here's an example:
<xsl:for-each select="node()" order-by="date(.)">
Does...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.