New feature: You can now inject portions of a document via .load(), as opposed to...
authorJohn Resig <jeresig@gmail.com>
Sat, 25 Aug 2007 03:33:08 +0000 (03:33 +0000)
committerJohn Resig <jeresig@gmail.com>
Sat, 25 Aug 2007 03:33:08 +0000 (03:33 +0000)
Examples:
- $("#test").load("test.html #something");
- $("#test").load("test.html p.user");

Caveats:
- No scripts are injected when a selector is used.
- The selector is rooted inside the head and body - it's equivalent to doing:
  $("body,head").find(selector)


No differences found