im trying to find next div with class 'post' and scroll to it with a top offset of 182px.
this is what i got
HTML Code:$(".pagnering_number").click(function() {
var next;
next = $(this).nextAll('.post').first()
$('html,body').scrollTop(next);
alert();
});
