======================================================================
javascript:
function btn_onclick(){
var btn=document.getElementById(button_id');
btn.setAttribute('type', 'submit');
btn.setAttribute('value', 'save');
}
======================================================================
Jquery:
function btn_onclick(){
$('#' + button_id).prop('type', 'submit');
$('#' + button_id).html('Save');
}
======================================================================