$(document).ready(function() { $('.editme').hide(); $('.category').click(function() { $(this).next().fadeToggle('normal'); }); $('.editme1').hide(); $('.editme2').hide(); $('.category1_clicked').hide(); $('.category2_clicked').hide(); $('.category1').click(function() { var editme1_exception = $(this).nextAll('.editme1:first'); $('.editme1').not(editme1_exception).hide(); $('.editme2').hide(); $('.category2_clicked').hide(); $('.category2').show(); var notme_btn = $(this).closest('.category1'); var notme_btn_clicked = $(this).nextAll('.category1_clicked:first'); // reset all other arrows $('.category1').not(notme_btn).show(); $('.category1_clicked').not(notme_btn_clicked).hide(); $(notme_btn).hide(); $(notme_btn_clicked).show(); $(this).nextAll('.editme1:first').fadeToggle('normal'); }); $('.category1_clicked').click(function() { var editme1_exception = $(this).nextAll('.editme1:first'); $('.editme1').not(editme1_exception).hide(); $('.editme2').hide(); $('.category2_clicked').hide(); $('.category2').show(); var notme_btn_clicked = $(this).closest('.category1_clicked'); var notme_btn = $(this).prevAll('.category1:first'); $(notme_btn_clicked).hide(); $(notme_btn).show(); $(this).nextAll('.editme1:first').fadeToggle('normal'); }); $('.category2').click(function() { var editme2_exception = $(this).nextAll('.editme2:first'); $('.editme2').not(editme2_exception).hide(); $('.editme1').hide(); $('.category1_clicked').hide(); $('.category1').show(); var notme_btn = $(this).closest('.category2'); var notme_btn_clicked = $(this).nextAll('.category2_clicked:first'); // reset all other arrows $('.category2').not(notme_btn).show(); $('.category2_clicked').not(notme_btn_clicked).hide(); $(notme_btn).hide(); $(notme_btn_clicked).show(); $(this).nextAll('.editme2').eq(0).fadeToggle('normal'); }); $('.category2_clicked').click(function() { var editme2_exception = $(this).nextAll('.editme2:first'); $('.editme2').not(editme2_exception).hide(); $('.editme1').hide(); $('.category1_clicked').hide(); $('.category1').show(); $(this).closest('.category2_clicked').hide(); $(this).prevAll('.category2:first').show(); $(this).nextAll('.editme2').eq(0).fadeToggle('normal'); }); });