I am building a similar wall feature to what facebook has, comments etc.
I am making use of django's comments framework and jquery to post and get on success, and I am looking at a way of extracting the the hidden id_object_pk
's value and using that also as the forms id
Your normal form is rendered in the following way.
<form action="/comments/post/" method="post" class="comment-form" id="">
<input type="hidden" name="content_type" value="wall.post" id="id_content_type" />
<input type="hidden" name="object_pk" value="76" id="id_object_pk" />
<input type="hidden" name="timestamp" value="1283848690" id="id_timestamp" />
<input type="hidden" name="security_hash" value="ccf0e2f3cbbd57cb043df3f304a8dd50a74e972b" id="id_security_hash" />
How can I access those details?