Answer the question
In order to leave comments, you need to log in
How to make html appear smoothly?
On the click of a button, I change some of the content with
But it changes too abruptly. how to force it to change within 1-2 seconds? $('.floor').hide().html(myHTML);
Answer the question
In order to leave comments, you need to log in
$('.floor').fadeOut(function() {
$(this).html(myHTML);
}).fadeIn();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question