object = $(' ') and is followed by a .event
objects inside jQuery events must be inside a function
object = $(' ') and is followed by a .event
objects inside jQuery events must be inside a function
I started with a question simply asking "What is your name?" but now I can't see a place for && and ||.
jQuery variables are done just like JavaScript variables except the are conventionally preceded by a "$" to show that the contain a jQuery object.
jQuery is mostly like JavaScript except that it actually manipulates a website's source code. The overall syntax is the same except that jQuery has a unique syntax for its objects. It appears to be organized like HTML and CSS in the sense that it is like a tree, with object function sets within object function sets.
and - true only if all are true, false if only one is false:
true && true // = true
true && false // = false
false && true // = false
false && false // = false
or - true if only one is true, false only if all are false:
true || true // = true
true || false // = true
false || true // = true
false || false // = false