I've modified the django comment form and noticed that it does not output with an html id. How can I add an html id to the entire form?
I need the id so I can get the value of a radio select in jQuery.
EDIT: I've tried Matthew Schinckel's method below:
var output = $("input[name=rating]:checked").val();
$('#some_div').text(output).fadeIn(500);
This returns nothing.