Thursday, January 12, 2012

Hide Entire container and show when all content has been loaded

$(document).ready(function () {
        $("#container").hide();

    });
    $(window).load(function () {
        $("#container").show();
    });

No comments:

Post a Comment