Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery.noConflict();
- jQuery(document).ready(function ($) {
- var notif = location.search.replace("?","").split('=')[1];
- if( notif != false)
- {
- $('#'+notif).css({"color": "#d9534f"});
- var scrollTo = Math.floor( $('#'+notif).position().top );
- window.scrollTo(0, scrollTo);
- }
- $('a[href^="#"]').on('click', function (event) {
- var target = $(this.getAttribute('href'));
- if (target.length) {
- event.preventDefault();
- $('html, body').stop().animate({
- scrollTop: target.offset().top
- }, 1000);
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement