You can edit any Input field’s HTML output with the Input field as well. Here is an Example.
function new_input_field_html($field_html){
$field_html['text'] = array(
'html'=>'My Custom HTML',
);
return $field_html;
}
add_filter('job_bm_filter_input_field_html','new_input_field_html', 30, 1);

