View Single Post
Staro 23.06.2017., 08:56   #3
cdhr
Premium
 
cdhr's Avatar
 
Datum registracije: Jul 2016
Lokacija: Osijek
Postovi: 161
Unutar svog JS file:
Citiraj:
// handle links with @href started with '#' only
$(document).on('click', 'a[href^="#"]', function(e) {
// target element id
var id = $(this).attr('href');

// target element
var $id = $(id);
if ($id.length === 0) {
return;
}

// prevent standard hash navigation (avoid blinking in IE)
e.preventDefault();

// top position relative to the document
var pos = $id.offset().top;

// animated top scrolling
$('body, html').animate({scrollTop: pos});
});
});
Unutar svog html file stavi unutar href ID od elementa na koji želiš da stranica odskrola.
cdhr je offline   Reply With Quote