views:

119

answers:

1

How Can we integrate a JQuery menu with windows XP desktop for example a top menu that appears on mouse over ...

+1  A: 

Windows Desktop Gadgets are written using XML/HTML and Javascript/VbScript. As are HTA (HTML Applications). I had to use an HTA to solve a rather unfortunate problem once and the only thing that kept me sane was that I could use jQuery.

Gabriel
How can we do something like this : http://www.jquerylightbox.com/jquerylightbox.jpg ?get it here :http://www.rocketdownload.com/program/visual-jquery-lightbox-154806.html
Codeffect
Well you could either: write a .net application that uses a WebBrowser control to render, and inject its contents from code. http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx ; or you could write that application as an HTA, not sure that you would be able to encompass all the features indicated on that screen-shot but probably. http://msdn.microsoft.com/en-us/library/ms536496(VS.85).aspx
Gabriel
Thank you Gabriel.
Codeffect
Glad I could help.
Gabriel