The code is:
$function readyFin(jQuery() {
console.log('ready!');
}
$(document).ready(readyFin);
If you can think of a better title for this question, please advise.
I am expecting to see ‘ready!’ in the javascript console in Chrome, but I do not. Why?
try this:
please see http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
can you see where the issue is?