1.4.2: "$(function() {}" not working any more?
Hello,
till version 1.4.1 this code was executed:
-
$(function() { alert("I am ready"); });
... instead of using this longer one:
-
$(document).ready(function(){ alert("I am ready."); });
Now in 1.4.2 the shorter one does'nt work any more.
But why? I can't find a hint in the changelog.
Carlos