Thanks Julian ! But, what if I want to somehow get the users entered password into that action hook ? Any thing I can do to get the password in the create User HOOK ?
@akumbhare Best bet is to have a client-side file loaded that listens for the action:ajaxify.end hook.
$(window).on('action:ajaxify.end', function(ev, data) {
var url = data.url;
});