jQuery
Languages
Html
CSsssS
Flow Control
100
A function to execute each time a mouse click is triggered.
What is .click()?
100
In JavaScript, this is the keyword you use to declare a function.
What is function?
100
This tag defines a paragraph.
What is a 'p' tag?
100
These CSS properties define the space between the element border and the element content.
What is padding?
100
If this statement evaluates to false and an else clause exists, the statement associated with the else clause runs. If the test statement evaluates to true, the statement following the expression runs and the else clause is ignored.
What is an 'if statement'?
200
This method can get the value of a style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
What is .css()?
200
This language is a loosely-typed, interpreted, scripting language.
What is JavaScript?
200
This tag defines an image in an HTML page.
What is a 'img' tag?
200
These properties define the space around elements.
What is margin?
200
This is a control statement which allows code to be repeatedly executed. Unlike many other kinds of flow controls this one is often distinguished by an explicit loop counter or loop variable.
What is a 'for statement'?
300
This method can get the higher level element of the selected element.
What is .parent()?
300
JavaScript requires you to use this keyword to declare a local variable.
What is var?
300
This tag defines a division or a section in an HTML document.
What is a 'div' tag?
300
This is the CSS selector that is used to identify a class.
What is a dot?
300
This flow control statement allows code to be executed repeatedly based on a given boolean condition. The condition is evaluated before the code is executed, and executes only if the condition is true.
What is a 'while statement'?
400
This method moves between show and hide between matched elements.
What is .toggle()?
400
This is the language that your paging styling should use.
What is CSS?
400
This tag is used to group inline-elements in a document.
What is a 'span' tag?
400
This is the CSS selector that identifies an id.
What is a hash (#)?
400
This flow control statement allows code to be executed repeatedly based on a given boolean condition. The condition is evaluated after the code is executed once, and executes repeatedly until the condition is false.
What is a 'do-while statement'?
500
This method binds one or two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
What is .hover()?
500
This is the intrinsic type that all objects inherit from in JavaScript
What is Object?
500
This tag defines a hyperlink, which is used to link from one page to another.
What is an 'a' tag?
500
This is the meaning of the CSS acronym.
What is Cascading Style Sheet?
500
This flow control statement is used to allow the value of a variable or expression to change the control flow of program execution via a multiway branch.
What is a switch statement'?