[Answer]-Django style a form with jquery

1👍

In jquery you could just do something like this to hide whole input container:

$(function() {
  $('#id_flavor').parents('p:first').hide();
});

Leave a comment