tags:

views:

34

answers:

2

Can you recommend me a way when is clicked on the second box to disappear and in its place to move the third box ?

You can see it here http://jsfiddle.net/q6t7W/

+4  A: 

just hide it look here: http://jsfiddle.net/avipinto/q6t7W/1/

Avi Pinto
A: 

You need to add a class to the elements you want to be hide-able, and then target those for the click event..

example at http://jsfiddle.net/SmdCy/

so add a class="hideable" to the elements your want and use the code

$('.hideable').click(function(){
    $(this).hide();
});
Gaby