Kinda new myself, but I believe that the load method can take a callback as the third parameter, like...
$('#myDivID div.itemContent').load('/controller/action/', null, function() { $('a', $(#myDivID div.itemContent')).click(function() { do your thing return false; }) }); VP On 6/30/07, Tobias Parent <[EMAIL PROTECTED]> wrote: > > Hey - > > I've got content being loaded via > > $('#myDivID div.itemContent').load('/controller/action/'), and the > information being loaded is a list of links, which I'd like to set to > trigger a series of ajax calls for related DIV's throughout the page. > Can I simply set the callback on the load() to a bind()? Total NOOB, in > over my head. > > glub, blub... > - Toby >