Commit bcb2909a by aagusti

Merge branch 'master' of https://git.opensipkd.com/taufik/esipkd

2 parents 6c18362e 30c305e4
......@@ -310,7 +310,22 @@
window.open(url+data);
});
</script>
<button id="btn_va" name="createva" type="button" class="btn btn-primary "
value="createva">Create VA</button>
<button id="btn_qris" name="createqris" type="button" class="btn btn-primary "
value="createqris">Create QRIS</button>
<script>
$('#btn_va, #btn_qris').click(function () {
$.ajax({
type: "POST",
url: "",
data: {'form': $("#deform").serialize(), $(this).val():True},
success: function(msg) {
window.location.reload();
}
});
});
</script>
</div>
</div><hr>
</div>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!