The bootstrap hide class does not work like the jQuery hide function, creating a confusing result.
To jQeuerify your hidden thangs, before you move them around, you can do something like this:
$('.hide').hide().removeClass('hide'); $("#more-news") .click(function() { $(".news-hide") .slideDown('slow'); });
Now you do not need to worry about this hide class every time you do something, but it hides everything until the document is ready for javascript itself.
source share