remove alert in member_list.php : venkateshwaran

This commit is contained in:
venkateswaran ubuntu 2023-08-17 18:05:13 +05:30
parent 11f469993a
commit 5a07f82bff

View File

@ -298,8 +298,7 @@ $(document).on('click','.transaction',function(){
<script>
$(document).on('click','.del-balance',function(){
// alert($(this).attr('id').split('|')[2])
alert($(this).attr('id').split('|')[1])
bal = $('.balance').html();
cer_trans = $(this).attr('id').split('|')[0];
tot = bal - cer_trans;
@ -322,8 +321,7 @@ $(document).on('click','.del-balance',function(){
<script>
$(document).on('click','.add-balance',function(){
// alert($(this).attr('id').split('|')[2])
alert($(this).attr('id').split('|')[1])
bal = $('.balance').html();
cer_trans = $(this).attr('id').split('|')[0];
tot = bal + cer_trans;