Try
$('#checkone').attr('checked', true);
or
$('#checkone').get(0).checked = true;
or
$('#checkone')[0].checked = true;
The reason your first code didn't work is because you tried to set a property checkedon a jQuery object that would not have a visible effect, since it only works on its own DOM object.
get(0) [0], DOM . , checked, jQuery attr, .