Hello,
I'm pretty new to JS and I have this HTML form that has hidden values and I want to display a text click that states, "Post Comments" and the following should display:
any idea on how to start? Thanks for any help in advance.
I'm pretty new to JS and I have this HTML form that has hidden values and I want to display a text click that states, "Post Comments" and the following should display:
Code:
<form name="comment_box" method="post" action="/project/post_comments">
<textarea name="comments" class="pseudo-multiline" autocomplete="off" style="width:100%;height:22px;"></textarea>
<input type="hidden" name="pid" value="$pid">
<input type="hidden" name="post_id" value="$post_id">
<input type="hidden" name="uid" value="$uid"><br>
<input type="submit" value="Post Comments" class="submit">
</form>
any idea on how to start? Thanks for any help in advance.