I currently have a hidden div
<div id="llave" style="display: none">
//aca esta el contenido
</div>
but what I'm looking for is that when I finish loading the page it shows up.
I was trying like this:
<script type="text/javascript">
$(window).load(function() {
document.getElementById('llave').style.display='block';
});
</script>
but it does not turn out ... will there be any way that it could happen?