Here is my input:
<input name="my_checkbox" type="checkbox" value="1">
I'm trying to check/uncheck it via jquery:
this._holder.find('checkbox').prop('checked', true);
But this fails to work. I know this._holder.find is working as I am able to set this:
this._holder.find('input').val('whatever');
Where am I going wrong?