I\'m calling this function:
function submit_button(button_id){
$(\'#\' + button_id).attr(\'type\', \'submit\');
}
to make this button t
function submit_button(){
var btn=document.getElementById('button_id');
btn.setAttribute('type', 'submit');
}
======================================================================
function submit_button(){
$('#' + button_id).prop('type', 'submit');
}
======================================================================