jQuery




$(".article:not(.hidden) > .header")
    .width($("#mainHeader").innerWidth())
    .click(function () {

        $(this)
            .siblings(".content")
            .load("/article/" + $(this).parent().id(),
              null, 
              function () {

                  $(this).fadeIn(250);

              });

    });

gQuery

import static com.google.gwt.query.client.GQuery.*;

$(".article:not(.hidden) > .header")
    .width($("#mainHeader").innerWidth())
    .click(new Function() {
      public void f() {
        $(this)
            .siblings(".content")
            .load("/article/" + $(this).parent().id(),
              null,
              new Function() {
                public void f() {
                  $(this).fadeIn(250);
                }
              });
      }
    });
1