potrzebuje zeby jeden div sie animował po kliknieciu a div nr.2 sie zmienial np. rozwiniety/zwiniety
jquery na ktorym utknołem jak to zwinąć
$(document).ready(function(){ $(".more").click(function(){ $(".move").animate({left:'250px'}); if ($(this).text() == "rozwin") $(this).text("mniej") else $(this).text("rozwin"); }); $("").click(function(){ $(".move").animate({left:'5px'}); }); });
http://jsfiddle.net/G8ARD/
kombinuje w ten sposob ale jakos mi niegra cos :/