I am reading a tutorial on creating crickbox with jquery, php and ajax. In jquery code, it creates a type variable
var messageList = $(".content > ul");
There is a content class in html and it has an unordered list. But I do not understand the syntax .content > ulwhen creating a variable.
Can you explain?
HTML
<div class="content">
<h1>Latest Messages</h1>
<div id="loading"><img src="css/images/loading.gif" alt="Loading..." /></div>
<ul>
<ul>
</div>
source
share