An example on how to inject jQuery into a web page
It can be useful to manage the page from AutoIt using jQuery.
Idea from here: http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet
Suggestions and improvements are welcome
#include <ie.au3>
Example()
Func Example()
Local $oIE = _IECreate("www.google.com")
Local $jQuery = _jQuerify($oIE)
MsgBox(0, "Version", "jQuery version: " & $jQuery.fn.jquery)