|
Wird ein Link angeklickt, wird dieser mit Fettschrift markiert.
Autor: Calvin Leung
zur Demo
in <head> einfügen
<!-- Created by: Calvin Leung | pphresh.com -->
<script type="text/javascript">
function turnBackBold (speclink) {
var anchors = document.links
for (i=0; i<anchors.length; i++) {
anchors[i].style.fontWeight = '300';
}
speclink.style.fontWeight = '900';
}
</script>
in <body> einfügen
<a href="#" onclick="turnBackBold (this);">link 1</a>< |