jquery - How to animate input box and btn search -
i have following code , animation not working expected. on focusout inputbox animates nice btn_search returns place without animation.
<div class="form-group"> {!!form::text('pretraga',null,['id'=>'pretraga','class'=>'form-control','placeholder'=>'pretraga...'])!!} </div> <div class="form-group"> {!!form::button('<span class="glyphicon glyphicon-search"></span>', ['id'=>'btn_search', 'class'=>'btn btn-default'])!!} </div> $("#pretraga").click(function (e) { e.preventdefault(); $(this).animate({width: '250px'}, "slow"); }); $("#pretraga").focusout(function(e){ e.preventdefault(); $(this).animate({width: '100%'}, "slow"); });
Comments
Post a Comment