Предположим, у вас есть разметка, подобная этой:
<button id="button1">Toggle Div1</button>
<button id="button2">Toggle Div2</button>
<div class="container" id="div1">Content in DIV 1</div>
<div class="container" id="div2">Content in DIV 2</div>
Тогда используйте jQuery так:
$('button').click(function(e) {
// get the ID of the button so we can work out which DIV to show
var m = $(this),
id = m.attr('id').replace('button', ''); // should be either "1" or "2" after this
// hide the DIV that's visible, if any
$('.container:visible').slideUp('fast');
// slide the one we want down
$('#div' + id).slideDown('fast');
});
Есть множество способов сделать это - это зависит от вашей разметки!