<a href="printable.php">
<button id="btnSubmit" type="button" class="btn btn-primary" disabled="disabled">Print</button>
<a>
<script>
if ($verifikasi = "Pending") {
//Disable the TextBox when TextBox has value.
btnSubmit.disabled = true;
} else {
//Enable the TextBox when TextBox is empty.
btnSubmit.disabled = false;
}
</script>
I'm trying to disable Print Button if the status($verifikasi) is still "Pending", but the button is still clickable.