I am looking to hide element on .ready and show them with animation onclick. I tried to do it this way
$(document).ready(function() {
$('.bio').hide();
});
$('.anotherdiv).onclick(function() {
$('.bio').show(2000).animate({ left:'15em' }, 2500);
]);
I know I am probably way off.