Sure.
Firstly we are modifying one of Bruces internal scripts which mean when you next upgrade it will revert. Its also generally a bad idea, as it will add extra steps and be a pain in the ass going forward. But, on the up side its a great way to get under the hood and understand how NT works internally (and it is very special - its truly very cool code, extremely well abstracted).
So, in conclusion you shouldn't do this...
But I see you are still reading, so lets just call it a training exercise
edit: jquery.nt-upload.js
firstly, the key part, finding the correct place for the callback, im on NT7.18 (so your file may vary slightly)
Find the doneone function (line 248). This is called each time a file has completed uploading to the server. So its where we need to get involved.
I added some code like this at line # 260
if(this.options.refreshName)
setTimeout(sv('',this.options.refreshName,'','',this.options.refreshPar,this.options.refreshSil),1000); /* added by BS to support refresh */
}
All this code does is wait 1 second after the upload to call sv, and reload the requested page/ajax.
refreshName, refreshPar, and refreshSil are extensions I made to Bruces wrapper, I added them
To define those paramaters add:
refreshName: '', /* added by BS to support refresh */
refreshPar: '',
refreshSil: ''
at about line 44 (they should be last in the list of options)
See how elegantly Bruce has wrapped the normal jquery upload system, its pretty.
Don't forget if you are combining files etc, you'll need to regenerate them otherwise, you're newly modified scripts won't make their way to the browser.
Anyway that will work, but you shouldn't do it
Best of luck