“Dodaj Usuń Link Dropzone” Kod odpowiedzi

Dodaj Usuń Link Dropzone

$(".dz-remove").on("click", function (e) {
     e.preventDefault();
     e.stopPropagation();

     var imageId = $(this).parent().find(".dz-filename > span").text();

     $.ajax({
     url: "Your url here",
     data: { imageId: imageId},
     type: 'POST',
     success: function (data) {
          if (data.NotificationType === "Error") {
               toastr.error(data.Message);
          } else {
               toastr.success(data.Message);                          
          }},
          error: function (data) {
               toastr.error(data.Message);
          }
     })

});
Naughty Narwhal

Dodaj Usuń Link Dropzone


init: function() {
 addRemoveLinks: true, 

Real Rat

Odpowiedzi podobne do “Dodaj Usuń Link Dropzone”

Pytania podobne do “Dodaj Usuń Link Dropzone”

Więcej pokrewnych odpowiedzi na “Dodaj Usuń Link Dropzone” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu