I know that doing this is possible:
$(document).ready(testing);
function testing(){
alert('hellow world!');
}
But how would I make something like this work where I want to pass a variable to the function:
$(document).ready(testing('hey world!'));
function testing(message){
alert(message);
}