I have the following code to select an address with a bootstrap glyphicon, but, I do not capture the event.
<td>
<a href="#" class="selectpoblacion" data- poblacion="@dir.DireccionEnvio">
<span class='glyphicon glyphicon-arrow-right'> </span></a>
</td>
$('a .selectpoblacion', this).on('click', function (e) {
e.PreventDefault()
var prueba = (this).data("poblacion");
console.log(prueba)
$("#cambiar .close").click()//CERRAR MODAL
});