I have an XSL Template. In table, before 'Greetings', I need to add a blinking text cursor. Currently, the cursor appears only on clicking. But, I need that cursor to appear by default before 'Greetings'.
I need that cursor to appear before 'Greetings' like image 2
<xsl:template>
<html>
<body>
<table style="padding: 0px; width: 100%;">
<tr>
<td>Greetings,</td>
</tr>
</table>
</body>
</html>
</<xsl:template>