Huerta

3 Propiedades
Ordenar por:

Compare listings

Compare
// Fix para Android - prevenir cierre de teclado en modal de búsqueda (function($) { $(document).ready(function() { if (/Android/i.test(navigator.userAgent)) { $('#overlay-search-advanced-module').on('touchmove', function(e) { e.stopPropagation(); }); $(document).on('focus', '#overlay-search-advanced-module input[type="text"], #overlay-search-advanced-module .houzez-keyword-autocomplete', function() { var $input = $(this); setTimeout(function() { $input.focus(); }, 150); }); } }); })(jQuery);