編集:質問が非常に人気になったので、問題を修正してコード例を機能させます。元の問題はまだリストされていますが、コードは機能します。
ボタンを押した後に div を表示しようとしていますが、これはうまくいきません。
<form action="insert.php" method="POST" align="right" id="post_form">
<input type="button" value="click me" onClick="show()">
<div id="show_button"> fdsfds </div><br>
</form>
#show_button{
visibility:hidden;
}
function show(){
// alert("cheked the button - worked");
document.getElementById("show_button").style.visibility= 'visible' ;
}