Hello
I'm having a problem, I have a button on page1 that when clicked passes this url:
http://www.example.com/page1.html?jquery=blogger
once it's clicked will go to page2 where there are checkboxes. I need the checkbox associated with "blogger" (named: cf_538) to be checked once the page loads.
<script type="text/javascript">
<!--
var koko = querySt("jquery");
if (koko == 'blogger'){
document.order.cf_538.checked = true;
alert('thank you for showing interest in our start up package');
}else{
alert('thank you for showing interest in our services');
}
-->
</script>
However when I do this, nothing happens but the alert. The check box is not checked. Any help would be greatly appreciated.
Regards, Hal