ページの読み込み時に非表示のラベルがあります。jqueryを使って見えるようにする方法
<label for="error" style="margin:100px auto 60px auto;color:Red; line-height:40px;font-size:medium;visibility:hidden">error occured</label>
私はそれを隠すことができます。
$('label[for="error"]').hide();
これは機能しません
$('label[for="error"]').show();