If I understand correctly, you want it to write the code if the statement returns true. Right?
If so, just add the document.write() to the script:
Code:
<script type="text/javascript">
<!--
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
if (month == 4 && day <= 30) {
document.write('<ul><li>SIGNUP: <a href="webpage"><span style="color: rgb(0, 0, 255);">SIGNUP FORM FOR TESTING</span></a></li></ul>');
}
else {
return false
}
//-->
</script>
Hope that helps!
// X96 \\
Bookmarks