views:

1855

answers:

1

I am creating a Vista Gadget and I haven't been able to get JQuery to work. I have tried a few very simple calls like this:

$(function() {
      $('a').click(function() {
          $('#box').html("test");
      });
});

I know you can use JavaScript so it doesn't make much sense to me why you wouldn't be able to use a library.

Does anyone know if any examples?

+7  A: 

Here is a widget for vista done with jquery. Might help you.

redsquare
cheers! Looked around for some examples but I couldn't fine any!
cgreeno