div #network-register の内容を、reg-success-notification クラスの新しい div に置き換える必要があります。div コンテンツは更新されますが、新しいコンテンツは表示またはロードされません。
$('#network-register').html('<div class="reg-success-notification"><p>Your account has been successfully created. You will be logged in within 5 seconds.</p></div>').fadeIn(1000);
}
I found the issue was due to `"display: none"` in the CSS code of the div's class.
CSS Code
div.reg-success-notification {
display:none
...more rules...
}