I have this following where I would like to dynamically add the list elements to it:
<ul name='eval-options' class="inputs-list">
</ul>
I'm adding the list elements with the following js but it is not working
$("#eval-options ul").append('<li><label><input type="checkbox" name="optionsCheckboxes" value="option1" /><span>Option one</span></label></li>');
name='eval-options'needs to beid='eval-options'.#is anidselector.ulthat has the IDeval-options? That's what your selector is looking for.