Selecting root element of a certain level in the document

// 1 level: $('*:not(* *)'); // 2 level: $('*:not(* *)').find('> *'); // 3 level: $('*:not(* *)').find('> * > *');

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.