0

How to do this similar function with GwtQuery:

$(document).ready(function(){
    $('#test_div').bind('DOMNodeInserted DOMSubtreeModified DOMNodeRemoved', function(event) {
        alert('Changed');
    })
})

I think the question here would be the right GWT DOM event to bind to with GwtQuery

quarks
  • 33,478
  • 73
  • 290
  • 513

1 Answers1

1

Unfortunatelly GQuery does not support those events. There is an issue opened to change the events mechanism used in gquery, and eventually this would fix this problem. Post a +1 in this issue adding this case or open a new issue.

Manolo Carrasco Moñino
  • 9,723
  • 1
  • 22
  • 27