$(function(){ $('#cse-search-btn, #cse-search-btn-top').click(function(){ var text_match_input_id = $(this).attr('href'); var text_match = $('#'+text_match_input_id).val(); if (text_match == '') { $('#'+text_match_input_id).addClass('hl-err-input').focus(); return false; } $('#cse-text-match').val( text_match ); $('#cse-submit-btn').click(); return false; }); $('#quick-search').submit(function(){ var action = $('#search-action').val(); var txt = $('#search-text').val(); if (txt=='поиск...' || txt == '') { $('#search-text').val('').addClass('hl-err-input').focus(); return false; } if (action == 'cse') { $('#cse-search-btn-top').click(); return false; } else { $(this).attr('action', action); } }); });