|
|
@@ -199,7 +199,7 @@ |
|
|
|
<input id="subscription1" type="radio" name="subscription" value="12">12 Months <br> <small id="OTC" style="color:red; display:none">A one-time charge of RM300 applies for 12 months subscription.</small> |
|
|
|
</label> |
|
|
|
<label class="radio-inline"> |
|
|
|
<input id="subscription2" type="radio" name="subscription" value="24" checked="">24 Months |
|
|
|
<input id="subscription2" type="radio" name="subscription" value="24" checked="">24 Months <br> <small id="OTC-side" style="color:red; display:none">.</small> |
|
|
|
</label> |
|
|
|
<!-- @if ($a['package'] != "1Gbps") |
|
|
|
<label class="radio-inline"> |
|
|
@@ -426,6 +426,7 @@ |
|
|
|
$('#subscription1').change(function(){ |
|
|
|
if(document.getElementById('subscription1').checked){ |
|
|
|
$('#OTC').show(); |
|
|
|
$('#OTC-side').show(); |
|
|
|
$('#otcVoice').show(); |
|
|
|
document.getElementById('10off').checked = false; |
|
|
|
$('#10off').hide(); |
|
|
@@ -435,6 +436,7 @@ |
|
|
|
$('#subscription2').change(function(){ |
|
|
|
if(document.getElementById('subscription2').checked){ |
|
|
|
$('#OTC').hide(); |
|
|
|
$('#OTC-side').hide(); |
|
|
|
$('#otcVoice').hide(); |
|
|
|
document.getElementById('10off').checked = true; |
|
|
|
$('#10off').show(); |