Ok, I seem to have this working.
the problem is in the javascript file jscript_products_compare.js.
If I change from this...
Code:
function compareNew(obj, action) {
$('#compareProducts').load('ajax_compare.php', {'compare_id': obj, 'action': action});
}
....to this.....
Code:
function compareNew(obj, action) {
$('#compareProducts').load('AJAX_servers/AJAX_compare_server.php', {'compare_id': obj, 'action': action},
function(data) { $("#compareProducts").html(data); }
);
}
It works!
Has anybody else had this not work or is it just me?