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?