On Wed, Apr 1, 2009 at 11:01 AM, Xu <bobxu1...@gmail.com> wrote: > > Thanks. Can you elaborate it? > You seem to suggest if my web page includes their actual JQuery file, > there will be for sure problems. Why is that? Thanks.
Because you'll be redeclaring the methods. If you load a page like this, you'll get an error: function foo() { alert('foo'); } function foo() { alert('foo again'); }