I am a newbie to XSL world and facing few issues with XSL
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="/">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="mycss.css" />
<script language="javascript" type="text/javascript" >
<xsl:text></xsl:text>
</script>
</head>
<body>
<table>
<tr bgcolor='yellow' onMouseover="changeColor(event, 'red');"> MYTEXT
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
and MY XML file is
<COUNTRY>
<CITY>X</CITY>
<CITY>Y</CITY>
</COUNTRY>
and my Javascript file is
function changeColor(e,highlightcolor){
source=ie? event.srcElement : e.target
source.style.backgroundColor=highlightcolor
}
Issue is not mouse over , Color doesn't changes in browser ........