Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<form action="form.php" method="GET"> <input type="text" name="city" value=""> <input type="text" name="price" value="300"> <button>Отправить</button> </form>
http://site.ru/form.php?city=&price=300
http://site.ru/form.php?price=300
$(document).on('submit', '.js-form-search', function(){ var area = $('select[name="area"]'); if (!area.val()) { area.prop('disabled', true); } });