vote up 5 vote down star
2

1.) What's the difference between these two queries, exactly?

$( "#orderedlist li" )
$( "#orderedlist>li" )

2.) In the jQuery file itself there is a function that returns the following:

function now(){
    return +new Date;
}

What does that mean? I've never seen +new before.

3.) In a brief skimming of a tutorial, I observed the following samples:

// use this to reset a single form
$( "#reset" ).click( function()
{
    $( "form" )[0].reset();
});

// use this to reset several forms at once
$( "#reset" ).click( function()
{
	$( "form" ).each( function()
	{
		this.reset();
	});
});

When I try to reference my own queries by array indexes, they don't seem to work. Yet this example clearly did when I tested it. What could I be doing wrong?

Edit: I'll put this one into its own question soon. Edit 2: Actually I may be able to debug it myself. Hang on...

I have guesses to each of these, but short of dissecting the jQuery file itself in full, I'm not completely certain what's at work here. Help appreciated.

flag

3  
I think these questions should be asked separately. – SilentGhost Jul 5 at 11:46

2 Answers

vote up 7 vote down check

Question #1:

  • #orderedlist li is a "descendant selector": an li anywhere within an #orderedlist.
  • #orderedlist>li is a "child selector": an li which is a direct child of an #orderedlist.

Question #2:

That's using the unary plus operator - it's equivalent to:

return Number(new Date);

see: http://xkr.us/articles/javascript/unary-add/ - it gives the number of milliseconds since the UNIX epoch.

Question #3:

I don't know about this one. Could you post a minimal failing example?

link|flag
+1 didn't know about that unary plus operator – Andreas Grech Jul 5 at 12:48
vote up 3 vote down
  1. The difference is in CSS selectors in general, not jQuery specifically. "#orderedlist li" will select any LI element below the #orderedlist element in the tree. "#orderedlist>li" will only select the LI if it is a direct child of #orderedlist.

  2. The + operator is just a common shortcut for converting a string to a number in JavaScript. E.g., +"1" + 1 will return 2, not 11.

  3. Not sure about this offhand without seeing the example that doesn't work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.