www.tiffanybulgaria.com Open in urlscan Pro
196.244.195.59  Public Scan

Submitted URL: http://www.tiffanybulgaria.com/includes/templates/tiffanybulgaria/jscript/jscript_extend.js
Effective URL: https://www.tiffanybulgaria.com/includes/templates/tiffanybulgaria/jscript/jscript_extend.js
Submission: On September 04 via api from US — Scanned from SG

Form analysis 0 forms found in the DOM

Text Content

/*************************
 * Add JScript *
 *************************/

// 1.Roll Word
function AutoScroll(roll) {
    $(roll).find("ul:first").animate({
        marginTop: "-25px"
    }, 500, function() {
        $(this).css({
            marginTop: "0px"
        }).find("li:first").appendTo(this);
    });
}

$(document).ready(function() {
    setInterval('AutoScroll(".scroll")', 3000);
});

$(window).resize(function() {
    if ( $(window).width() < 992) {
        $('.notice').addClass('scroll');
    }
    else {
        $('.notice').removeClass('scroll')
    }
});