$(function() { $('.balmenu:not(.kivalasztott)').hover(function () { $(this).css('background-color','#67b19b'); }, function() { $(this).css('background-color','#2a745e'); }); $.fn.clearForm = function() { return this.each(function() { var type = this.type, tag = this.tagName.toLowerCase(); if (tag == 'form') return $(':input',this).clearForm(); if (type == 'text' || type == 'password' || tag == 'textarea') this.value = ''; else if (type == 'checkbox' || type == 'radio') this.checked = false; else if (tag == 'select') this.selectedIndex = -1; }); }; }); $(document).ready(function() { $('#fkereso-gomb').click(function(){ document.location.href='/kereso/1/'+$('#fmit').val(); }); $('#fmit').bind('keydown',function(e){ if (e.keyCode == 13) { document.location.href='/kereso/1/'+$('#fmit').val(); return false; } }); $('#fmit').click(function(){ if ( $('#fmit').val() == 'keresés cikkben' ) {$('#fmit').val('');} }); $('.kep-keret').pngFix(); });