Alex Borsody
Alex Borsody

Reputation: 2040

Jquery Highlight Effect Not Smooth

at this url the jquery highlight effect here does not fade out smoothly as it does in the docs. How can this be fixed? Thanks. It is simple code.

$(document).ready(function(){

    $('#content').effect("highlight", {color:"#0101DF"}, 1000);
});

Upvotes: 1

Views: 307

Answers (1)

Ibu
Ibu

Reputation: 43810

Run it when the page is completely loaded. other stuff on the page are slowing down your animation

window.onload = function(){
   $('#content').effect("highlight", {color:"#0101DF"}, 1000);
};

Upvotes: 2

Related Questions