Ok here is the problem the values get assign immediately i open the page even when hyperlink not clicked here is my code below for the page.
Code: Select all
<div id="registration">
<div style="height: 40px;">
<a id="reg" class="regbutton" onclick="{assign var='groupname1' value='individual'}{assign var='groupname2' value=''}" href="#">Individual Registration </a>
<br />
<a id="reg2" class="regbutton" onclick="{assign var='groupname2' value='School/Academy'}{assign var='groupname1' value=''}" href="#">School / Academy Registration</a> <br />
<a id="reg3" class="regbutton" href="#">Supplier Registration</a>
</div>
<br />
{if $groupname1 !=''}
{cms_module module=SelfRegistration group="$groupname1" nocaptcha="1"}
{/if}
{if $groupname2 !=''}
{cms_module module=SelfRegistration group="$groupname2" nocaptcha="1"}
{/if}
</div>