Wednesday, November 25, 2009

Get Jquerified

Here is a small animation test you should do to feel the power of Jquery. Get firequery, the addon to firebug which itself is an add on to firefox before you try this. BTW the whole idea of extending firefox using add-ons and extending them with add-ons on top of it is fantastic (read abt XUL)

Load google and Jquerify it. You should do this by opening firebug and by clicking on console window. And then click on Jquerify. Once done run the following command more than once
$("#frame").toggle("slow");

the first part $("#frame") is for selecting elements in the DOM tree, the second part toggle("slow") is the action on the wrapped dataset (basically a set of dom elements) returned by the first part. This is the best way to remove search out of google. That is what it is, if you take Search out of google, google is blank.

No comments: