I\'m calling this function:
function submit_button(button_id){ $(\'#\' + button_id).attr(\'type\', \'submit\'); }
to make this button t
Here's a workaround:
$('').insertAfter('#confirm_button'); $('#confirm_button').remove();