Good day, RamananKaliraja n helped me with a great script to do a popup div.
The problem i now have is that the popup div within the div does not like any table><tr><td>, so itried using <div> in place of tr
but not working to create nicely div, What can i use?
all the bold text are the problem areas.
The problem i now have is that the popup div within the div does not like any table><tr><td>, so itried using <div> in place of tr
but not working to create nicely div, What can i use?
all the bold text are the problem areas.
Code:
<div id="light" class="white_content">
<div class="bgErrorMessage">
[B] <table>[/B] <-- <div> -->
<xsl:for-each... (xslt)
[B] <tr> <-- <div> -->
<td>[/B]<-- <div> -->
<xsl:call-template name="CreateObject">
<xsl:with-param name="Object" select="." />
</xsl:call-template>
[B] </td><-- <div> -->
</tr>[/B]<-- <div> -->
</xsl:for-each>
<input type="button" value="close" onclick="closePopUp();"></input>
[B]</table>[/B] <-- <div> -->
</div>
</div>
Comment