$(function(){ }) $(function(){ $(".cambiar_pagina").click(function(e){ e.preventDefault(); $("#offset").val($(this).data("pagina")); $("#resultado_form").submit(); return false; }); $(".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(){ $(".vivienda-mostrar").click(function(){ $(".bloques-vivienda").addClass("hide"); $(".tipo_vivienda_"+$(this).data("tipo")).removeClass("hide"); }); })