$(function(){
})
$(function(){
$(".comuna_select").change(function(e){
e.preventDefault();
$.post("./",{"_ajax_":"getSectorComuna","comuna_id" : $(this).val()},function(json){
var options = ' ';
$.each(json,function(id,nombre){
options+=' ';
});
if(esMovil())
{
$('#sector_select').empty(); //remove all child nodes
$("#sector_select").html(options);
}
else
{
$('#sector_select').empty(); //remove all child nodes
$("#sector_select").html(options);
$('#sector_select').trigger("chosen:updated");
}
},"jsonp");
});
})
$(function(){
})
$(function(){
})
$(function(){
})
$(function(){
$(".vivienda-mostrar").click(function(){
$(".bloques-vivienda").addClass("hide");
$(".tipo_vivienda_"+$(this).data("tipo")).removeClass("hide");
});
})