jquery complex selector,How find all elements least those within an element with specific ID? -
how can find elements not within element specific id? seek not work:
$(':not(#content *)') any idea?
select everything, utilize not remove don't need:
$("*").not("#content *"); jquery jquery-selectors
No comments:
Post a Comment