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


Reply With Quote

