When I have a large CSS file on my page, will my document.ready execution wait for the CSS file to load?
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="large-amount-file.css">
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
<p>fsdfsd</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
alert("hi");
});
</script>
</body>
</html>