function getRandomInt(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min)) + min; //Максимум не включается, минимум включается } $("#btn-balans-plus").click(function(event) { $('#modal-balans-plus').modal('show'); return false; }) //кнопка удаления в модальном окошке $("#input-summ").keyup(function(event) { var rnd = getRandomInt(100000, 999999); $("#div-img-qr").load("/api/modules/lk/load.php?summ=" + $(this).val()); /*$.ajax({ type: "POST", url: '/act/lk', data: "act=creat_qr&id=" + $(this).val(), success: function(data) { $("#img-qr").attr('src', data + '?id=' + rnd); } }); */ }) //Показываем окошко удаления обложки $("#btn-open-modal-del-img").click(function(event) { $('#exampleModal2').modal('show'); return false; }) $("#del_img").click(function(event) { $('#div-img').hide('2000'); $('#exampleModal2').modal('hide'); var id = $(this).data('id'); $.ajax({ type: "POST", url: '/act/page_cat', data: "act=del_img&id=" + id }); return false; })