<script> $("C-color").click(function(){ $("div").animate({width:"200px"},1000) }) $("input").focus(function(){ $(this).animate({width:"260px"}) }).blur(function(){ $(this).animate({width:"200px"}) }) </script>