フォームの送信ボタンで onclick 関数を使用して div を非表示にしています。しかし、それは隠れていません。これを行う最良の方法は何ですか?フォームを送信した後、ページの div を非表示にしたい。
<form action="" method="POST">
<input type="submit" onclick="hide_group_posts();">
</form>
<div id='div_i_want_to_hide'>
<?php include $_SERVER['DOCUMENT_ROOT']."page.php";?>
</div>
<script>
function hide_group_posts(){
$('#div_i_want_to_hide').hide();
}
</script>