Hi,
I want to inlcude some javascript in my blog page.
It seems to work, but are there any restrictions?
e.g. in HTM view paste in some javscript sample code:
<html>
<head>
<script type="text/javascript">
function PrintDate() {
today = new Date();
document.write('Date: ', today.getMonth()+1, '/', today.getDate(), '/', today.getYear());
}
</script>
</head>
<body>
<p align="right">
<script type="text/javascript">
PrintDate();
</script>
</p>
THE REST OF YOUR PAGE.
</body>
</html>