I am trying to hide a div until document is ready - and then display it.
This is what I am trying to do:
<div id='initiallyhidden' style='visibility:hidden'>I am a secret - kinda!</div>
<script>
$(document).ready(function() {
$("#initiallyhidden").show();
});
</script>
How can I make this work?