If your request is PHP then, when the process is success you can redirect to the same page :
PHP Code:
$result = $this->UserModel->save($data);
if($result){
return redirect()->to($_SERVER['HTTP_REFERER']);
}
If it is an ajax request:
Code:
window.setTimeout(function(){location.reload()},1500)