Listing 81 to 101, you can see the
1 to 40 jquery-tweets-tutorials-by-greg-sidelnikov-part-1
41 to 80 jquery-tweets-tutorials-by-greg-sidelnikov-part-2
#jQuery tutorial tweet 81 ~ jquery.ui.js is an add-on library to jquery.js — required for animation easing, complex mouse events, etc.
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 83 ~ jQuery UI online demos and documentation — jqueryui.com/demos/
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 84 ~ You can pass raw DOM as arguments: $(document.getElementById(“p1″)).prepend(document.getElementById(“p2″));
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 85 ~ It’s possible to pass the jQuery selector itself as arguments to a method ~ $($(“#p1“)).prepend($(“#p2“));
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 86 ~ Oddly, trying to prepend an element to itself will just remove it from the DOM — $(“#p2“).prepend(“#p2“);
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 87 ~ A variable is like a pair of tweezers to pick functions, objects, integers, strings, arrays, etc. to work on.
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 88 ~ A variable is an interface to the language but isn’t an object or an integer itself. That would be the data.
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 89 ~ To say that variables are objects is a mistake. Objects are assigned to variables. Variable is just a handle.
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012
#jQuery tutorial tweet 90 ~ The [0] index gets us the raw DOM object from a jQuery selector ~ $($(“#p2“)[0]).prependTo($(“#p1“)[0]); works
— Greg Sidelnikov (@gregsidelnikov) July 25, 2012

