1.4.2: "$(function() {}" not working any more?

1.4.2: "$(function() {}" not working any more?

Hello,
till version 1.4.1 this code was executed:

  1. $(function() { alert("I am ready"); });
... instead of using this longer one:
  1. $(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