<script>
jQuery(document).ready(function($) {
$('.checkbox').click(function() {
$(this).toggleClass('active');
});
$('i.xpnd').click(function() {
$(this).parent().toggleClass('active');
$('.checkbox.active').find("ul.depth").toggle('slow');
});
$('.link').click(function() {
$(this).toggleClass('active');
});
var url = window.location.href;
$('li.link').each(function() {
if ($('a',this).attr('href') == url) {
$(this).addClass('active');
$(this).parent().css( "display", "block" );
$(this).parents().addClass('checked');
}
});
$('li.checkbox').each(function() {
if ($('a',this).attr('href') == url) {
$(this).addClass('checked');
$('.checkbox.checked').find("ul.depth").css( "display", "block" );
}
});
console.log(url);
});
</script>
#class #css #jQuery #parent #parents #toggle