doctype html
html(lang="en")
span text
= ' '
div
.find() Находит элементы по заданному селектору, внутри выбранных элементов.
var loc = window.location.hash;
if (loc != "") {
var href = loc;
var target = $('.content-fade').find(href);
$('.content-fade-menu a').removeClass('active');
$('.content-fade-menu a[href="'+href +'"]').addClass('active');
$('.content-fade .content-fade-panel').hide();
$(target).fadeIn('fast');
}