Hi,
I am generating a list with links with this script:
<table border="0">
<?php do { ?>
<tr>
<td><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><?php echo "<a href=\"rubriek.php?categorie=" . ucfirst($row_Categorie['Categorie']) . "\" onclick=\"parent.link.location.href='link.php'\" target=rubriek>" . ucfirst($row_Categorie['Categorie']) . "</a>"; ?></font></td>
</tr>
<?php } while ($row_Categorie = mysql_fetch_assoc($Categorie)); ?>
</table>
My question is:
Is it possible to change the colour of the link when the user clicks on it without redrawing the list. For some reasons it is not possible to use a style-sheet for it.
Who can help?
Thanks in advance,
Jack