I can't see why you are taking the "More prone to browser errors". Javascript will run exactly the way you want it if you send to the browser the correct libraries/code.
You can see what browser is doing the request and send it the right piece of code (read as: if you have some code that will work in FF & Opera but not IE, write two versions of that code, one for each group of browsers.)
There are some libraries that can help you doing so.
Also, a comparison is not anything that should be done on the server side. SO, if you have a lot of traffic on your website, client-side work should be fine for that kind of stuff.
About the code-protection, you're right. Server-side won't let anybody read your code. So you must decide if server load is more important than people reading your code.
Also keep in mind that you can obfuscate your code. I know that's not the best solution, but it will keep away a lot of people not reading it.
EDIT:
Making it server side will make things work as expected on all devices (as your already said).
But there are some things you need to do in order to preserve your server's load from going to 100%.
Chandra Sekhar Walajap already told you about the benefit of using some kind of cache for the results. I'd personally go a little bit further as you're just scrapping all those pages.
I'd create a scrapper that will run, let's say, every 24 hours and fetch/scrap each product. Then I'd save all those products somewhere (read as in a database or whatever you want). This way, when a user makes a request for a comparison between products A and B you won't need to fetch/scrap all the sites, instead of that you'll just have to look for those products in the place where you saved them and show them to the user.
Note that this will preserve a lot of bandwidth only if you have a lot of users comparing a lot of products.
On the other side, if you have a few users searching only for a few products, making that kind of solution won't benefit you at all, because you know, fetching everything from all the sites every 24 hours is a lot of usage, both in CPU and bandwidth.
About the server load: I can't say. It depends on so much things that it's nearly impossible to say. You need to consider how big are the website that you're scrapping, how many products are there on each website? What's the hardware you're using? You'd be better by making some simple example using cURL and fetching everything from one of the sites. Then see how that impacts on the performance and decide.