Hi Guys,

Using this awesome module (ubercar 3/drupal 7) on a heavily modified and custom made ecommerce shop for a client..

I made the block work exactly as i want, and a lot of jquery tinkering happens behinds the scenes.. i use ajaxComplete() to make sure it applies to the block when i add/remove products. So, so far so good.

But when I get to the cart page, for some reason, ajaxComplete() never fires. I tried everything and nothing happens. The cart page is also heavily modified and needs a lot of jquery to calculate a few things on the fly. When I change a product quantity the module responds just great, but ajaxComplete() never fires and such, the changes don't happen again. Not sure what's going on, and why it would work flawlessly on the block but not on the page.

Anyone else have some experience with this? I ended up removing the ajax functionality on the cart page but obviously that's not the best solution. Anyone know of any method of applying jquery functions on the cart page after ajax has been loaded other than:

$(document).ajaxComplete(function() {...

that ajaxComplete function can be binded to exactly the ajax call being completed, but not sure how i would go on identifying it and targetting it correctly.

Thanks in advance for any help!