I donโt understand why you take "More prone to browser errors." Javascript will work exactly the way you want it if you send the correct libraries / code to the browser.
You can see which browser executes the request and sends the correct part of the code to it (read this: if you have code that will work in FF and Opera, but not in IE, write two versions of this code, one for each group of browsers. ) There are several libraries that can help you.
Also, comparison is not something that needs to be done on the server side. So, if you have a lot of traffic on your site, client-side work should be great for these kinds of things.
About code protection, you're right. The server side will not allow anyone to read your code. Therefore, you must decide whether server loading is more important than the people reading your code.
Also keep in mind that you can confuse your code. I know that this is not the best solution, but it will not allow many people not to read it.
EDIT:
The creation of the server side will lead to the fact that all functions will work on all devices (as already mentioned). But there are some things you need to do to keep the load on your server up to 100%.
Chandra Sekhar Walajap has already told you about the benefits of using your cache for results. I personally would go a little further, as you simply refuse all of these pages.
I would create a scraper that would run, say, every 24 hours and retrieve / dump each product. Then I would save all these products somewhere (read both in the database and anywhere). Thus, when a user makes a comparison request between products A and B, you will not need to select / delete all sites, instead you just need to search for these products in the place where you saved them and show them to the user.
Please note that this will save a lot of bandwidth only if you have many users comparing many products.
On the other hand, if you have several users who are looking for only a few products, then this solution will not do you any good, because you know that you get everything from all sites every 24 hours of use, both in the CPU and in bandwidth.
About server loading: I can not say. It depends on what is almost impossible to say. You need to think about how big the site you are recycling is, how many products on each website? What equipment do you use? You would be better off making a simple example using cURL and extracting everything from one of the sites. Then see how it affects performance and decides.