function basket() { //alert('a'); if($('.basket_table').length) { //alert('a'); //$('.tip').style.display='none'; $('.tip').hide(); $('.tip1').hide(); $('.tip2').hide(); $('.basket_table').find('div').mouseover(function() { if ($(this).attr("class").match('kolor')) { $(this).find('div').show(); //alert($(this).attr("class")); } }); $('.basket_table').find('div').mouseout(function() { if ($(this).attr("class").match('kolor')) { $(this).find('div').hide(); //alert($(this).attr("class")); } }); } } window.onload = function js() { basket(); }