I have following Ajax Success method :
success: function(data, el){
var parent = el.find(".jFiler-jProgressBar").parent();
el.find(".jFiler-jProgressBar").fadeOut("slow", function(){
$("<div class=\"jFiler-item-others text-success\"><i class=\"icon-jfi-check-circle\"></i> Success <b class=\"text-danger\"> <a href=\"#delete_upload_image\">Delete</a></b></div>").hide().appendTo(parent).fadeIn("slow");
});
console.log(data);
},
In this success method you see that I have a link which is :
<a href=\"#delete_upload_image\">Delete</a>
and
console.log(data)
This console.log(data) is returning following String :
mpic_list_573ecaafae8220.41741946 |76|40
Now I want call a php page e.g : delete_upload_image.php after click on this link <a href=\"#delete_upload_image\">Delete</a> with a string mpic_list_573ecaafae8220.41741946 and 76 and 40
I mean :
In delete_upload_image.php page I can get 3 string which is passed when I click on the delete link.
`
example.com/delete_upload_image.php?thestring= mpic_list_573ecaafae8220.41741946&firstint=76&secondint=40?console.log()just usedatathat variable contains the string you need