I am using the jquery.raty script which does write a hidden field into my page like:
<input id="cancel-score" type="hidden" name="news_question_1" value="1">
I have this and many other form elements which I would like to monitor onChange.
I do this with:
$('#NewsletterSurveyForm').find(':input').each(function(){
$(this).change(function(){....
Which works for all elements, but just not the hidden one.
Does anyone has an idea how to get its value?