Differences in similar remove() calls

Differences in similar remove() calls

What's the difference in the following two lines?

  1. $c.find("script").remove();
and

  1. $c.remove("script");

...where $c is a jQuery object representing a large div

(there is a difference in behaviour)