hallo Josef,
Danke fuer Eure Anteilnahme. Darf ich bitte auch noch wissen wie man es richtig macht?
ohne Javascript z.B. so (ich habe es mit div stat span gemacht, geht aber genauso)
------------ xml ----------
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/xsl" href="josef5.xsl"?>
<document>
<eintrag>
<name>
<vorname>Daniel</vorname>
<nachname>Defoe</nachname>
</name>
<lexikon>Robinson Crusoe (1719)</lexikon>
</eintrag>
</document>
---------- xsl-------------
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="document">
<html>
<head>
<title>blabla</title>
</head>
<body>
<xsl:for-each select="eintrag">
<div>
<xsl:attribute name="title">
<xsl:value-of select="lexikon" />
</xsl:attribute>
<xsl:value-of select="name/vorname" />xsl:text </xsl:text><xsl:value-of select="name/nachname" />
</div>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
-------------------
grüße
thomas