File size: 573 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$(document).ready(function() {
$('.configTab').each(function() {
$(this).click(function() {
$('a.configTab').removeClass("activeTab");
$(this).addClass("activeTab");
$('form.sectionForm').hide();
var section = $(this).attr("id").substring(3);
$("#form"+section).show();
event.preventDefault();
});
});
$('form.sectionForm').hide();
var activeTab = $("a.activeTab").attr("id").substring(3);
$('#form'+activeTab).each(function() {
$(this).show();
});
}); |