I have a jquery multiple drag and drop file uploader using dropzone.js.
I have added the following code to the dropzone code
this.on("queuecomplete", function (file) {
alert("&success=yes");
});
So when the queue has completed it sends an alert at the moment however I want to change it so it so that using jquery it adds this as a parameter to the URL.
Any ideas how to do this using jquery?
This will do the job...
this.on("queuecomplete", function (file) {
var url = document.location.href+"&success=yes";
document.location = url;
});
Option two (in case you already have one parameter)
this.on("queuecomplete", function (file) {
if(document.location.href.contains('?')) {
var url = document.location.href+"&success=yes";
}else{
var url = document.location.href+"?success=yes";
}
document.location = url;
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With