QUOTE (tsadmin @ Aug 24 2008, 02:15 PM)

Hello All
The Topic says it all, Iam looking to Hide and select the checkbox for the email signup.
Thanks for any advice
Alex
Put the following in a custom HTML module and it will select the first checkbox and then hide the checkboxes from showing up.
CODE
<script type="text/javascript">
<!--
if(document.getElementById('ctl00_ctl06_mailingList_cblMailingLists_0')) {
document.getElementById('ctl00_ctl06_mailingList_cblMailingLists_0').checked = true;
}
if(document.getElementById('ctl00_ctl06_mailingList_cblMailingLists')) {
document.getElementById('ctl00_ctl06_mailingList_cblMailingLists').style.display = "none";
}
-->
</script>