Leaderboard


Popular Content

Showing content with the highest reputation on 03/22/14 in all areas

  1. 1 point
    abushyk

    Предложения для будущих версий.

    1. Делаем заготовку кнопки <a href="#" class="btn reset_form">Очистить</a>2. Открываем /template/frontend/agency/standart_search_form.tpl Там описаны две формы - простая и расширенная. Внутри каждой размещаем эту кнопку. 3. Открываем /template/frontend/agency/js/search_form.js Внутрь блока $(document).ready(function(){ ... }) добавляем $('.reset_form').click(function(e){var form=$(this).parents('form').eq(0);form.find('select').val('');form.find('input').not('[type=hidden]').val('');form.find('textarea').val('');e.preventDeault();});