What does the > sign mean in (#todoList > div) in the following javascript?
$('#btnClear').click(function () {
$('#todoList > div').each(function () {
var entity = $(this).data('entity');
$todo.context.TodoEntries.remove(entity);
});
$todo.context.saveChanges(updateView);
});
In the Html File the #todoList is the id of a div.
<div id="todoList"></div>
And in this statement
$('#wrapper>div:not(#providerSelection)')
What is ":not"?