Data line

This commit is contained in:
CHIEFSOFT\ameye
2024-05-27 10:09:59 -04:00
parent 4c1ba8e01b
commit 0ce4088225
2 changed files with 55 additions and 2 deletions
@@ -17,4 +17,22 @@
</div>
</form>
<script type="text/javascript">
<!--
function allowStatus(countyry_code,action){
alert(countyry_code);
$('#allow-'+countyry_code).html('Processing...');
// $('#acc' + countyry_code).prop('disabled', true);
$.ajax({
url: "/confg/allowCountry?countyry_code=" + countyry_code + "&action=" + action
}).done(function (data) {
$('#allow-'+countyry_code).html(data);
// $('#acc' + countyry_code).prop('disabled', false);
});
return false;
}
// -->