Skip to content

Instantly share code, notes, and snippets.

@ogredude
Created July 20, 2011 20:33
Show Gist options
  • Save ogredude/1095859 to your computer and use it in GitHub Desktop.
Save ogredude/1095859 to your computer and use it in GitHub Desktop.
Uncaught TypeError: Object http://localhost:3000/surveys/new# has no method 'prev'
function remove_fields(link) {
$(link).prev("input[type=hidden]").val("1");
$(link).closest(".fields").hide();
}
<p class="fields">
<label for="survey_questions_attributes_0_answers_attributes_0_content">Answer</label>
<input id="survey_questions_attributes_0_answers_attributes_0_content" name="survey[questions_attributes][0][answers_attributes][0][content]" size="30" type="text" />
<input id="survey_questions_attributes_0_answers_attributes_0__destroy" name="survey[questions_attributes][0][answers_attributes][0][_destroy]" type="hidden" value="false" />
<a href="#" onclick="remove_fields(this); return false;">remove</a>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment