diff --git a/docs/content/error/jqLite/nosel.ngdoc b/docs/content/error/jqLite/nosel.ngdoc index c776c1531150..7dcf92c82384 100644 --- a/docs/content/error/jqLite/nosel.ngdoc +++ b/docs/content/error/jqLite/nosel.ngdoc @@ -2,3 +2,11 @@ @name jqLite:nosel @fullName Unsupported Selector Lookup @description + +In order to keep Angular small, Angular implements only a subset of the selectors in +{@link api/angular.element#angularsjqlite jqLite}. This error occurs when a jqLite instance is +invoked with a selector other than this subset. + +In order to resolve this error, rewrite your code to only use tag name selectors and manually +traverse the DOM using the APIs provided by jqLite. Alternatively, you can include a full version +of jQuery so that all selectors are avaiable.