I'm trying to determine the selector for this form element:
<form action="/php/edit_images_reorder.htm" method="post" name="draglist_form">
<input type="hidden" name="new_order" value="abc" />
...
This is what I'm working with right now:
$("form > [name='new_order']").val(...)
I want to assign a value to this form element from a function. Anyone know what the correct selector is? Thanks!