This input is in the code made in jade
input(type='hidden',id='latitud',name='lat',rel='popover', data-content='Marque en el mapa la ubicacion en el mapa.')
I configure a bootstrap popover with a script
$('#latitud').popover({placement:'bottom',trigger: 'manual',selector:'#map'});
Why does the popover show offset the container and not on the div #map?
I valididated with jquery.validator
$('#latitud').valid()
and I apply this rule
lat:{required:true},