$('div').filter('.' + target).addClass('active');
</body>:
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Kastomnie Skripti -->
<script src="js/custom.js"></script>
custom.js
$( document ).ready(function() {
$( 'body' ).click(function() {
alert('ZDAROVA');
});
});
jQuery(document).ready(function ($) {
$fixed = $('#your-id'); // ID элемента
$(window).scroll(function(){
if($(window).scrollTop()>254) // Если сверху проскроллено 254 пикселя
{
$fixed.css({position:"fixed", top:0}); // То фиксируем элемент
}
else // Если нет
{
$fixed.css({position:"relative", top:0}); // То возвращаем стили
}
});
});