I find using __doPostBack('id','args') creates a full page postback when on a submit button. I find it easier is add a hiddenfield the page, set the value, then call the button.click() event
$('#CommandArg').val('my argument');
$('#btnTrigger').click();