$('form').find('label.inputName').eq(0).html("Nombre de la Empresa"); $('#exampleInputName1').attr("placeholder", "Ingresá el nombre de la Empresa"); $('#exampleCustom_1').attr("placeholder", "Marca"); $('#exampleCustom_2').attr("placeholder", "Modelo"); $('#exampleCustom_3').attr("placeholder", "Matrícula"); $('#image').prev().html("Seleccioná la foto del vehículo"); $('input[type="file"]').after( "" ); $('input[type="file"]').on('change',function(){ var filename = $('input[type=file]').val().replace(/C:\\fakepath\\/i, ''); if(filename){ $('input[type="file"]').next().html(filename); } }); $('#boxinfo').hide(); $('#boxinfo span').on('click', function(){$('#boxinfo').hide();}) $('.goinfo').on('click', function(){$('#boxinfo').show();})