I\'m calling this function:
function submit_button(button_id){ $(\'#\' + button_id).attr(\'type\', \'submit\'); }
to make this button t
It worked finally , try finding the following:
$("#confirm_button").each(function () { this.type = "number"; });