Select Size
Size: (choose one)
8 Cup 4 Cup 3 cup 12-CUP
Availability: Select Size to view.
var dims = {
"Size" : "1"
};
var vs = new VariationSet(dims);
vs.add(new Variation({"Size" : "8 Cup", "Asin" : "B00005LM0S", "Price" : "$29.99", "PriceAmount" : 2999, "ListPrice" : "$54.00", "ListPriceAmount" : 5400, "ImageURL" : "http://ecx.images-amazon.com/images/I/41mBiJFBkpL._SL210_.jpg", "OfferListingId" : "GyUyQTH3Ir5HZ6GYAkfsY1p%2FytNFt4xTQZnOmnuaNchQjJJaMjTpsIuxV6Pa%2BvuaOmJrpvB4MIPXvPhPs24%2BXlhKDnzzVcAfe7ExrnM%2FC9G1ERvNFN%2Bu0r7HSMK44yI5mnBvAnsBvc2oNSFx%2FGUaEA%3D%3D", "Availability" : "Usually ships in 2-3 business days", "MerchantName" : "The Beverage Gourmet"
}));
vs.add(new Variation({"Size" : "4 Cup", "Asin" : "B00012D0R2", "Price" : "$34.90", "PriceAmount" : 3490, "ListPrice" : "", "ImageURL" : "http://ecx.images-amazon.com/images/I/21pAvzEZjJL._SL210_.jpg", "OfferListingId" : "wh8dtdyctwnSEGr7yeqSWbB6docyaPKwvF8t4fOrj29VzQ8F1E3N725EbWeYQB%2Fh5AFjSUOCzV%2Bj2mum%2FrQUhWkRMofNLdQvQvJayqAKzrPtk%2BTF1bZuQF3F3a%2FXo4lr2DifjSasg%2FA%3D", "VariationDescription" : "Chrome", "Availability" : "Usually ships in 1-2 business days", "MerchantName" : "Liquid Planet Online"
}));
vs.add(new Variation({"Size" : "3 cup", "Asin" : "B000Q76MYA", "Price" : "$24.90", "PriceAmount" : 2490, "ListPrice" : "$29.95", "ListPriceAmount" : 2995, "ImageURL" : "http://ecx.images-amazon.com/images/I/21pAvzEZjJL._SL210_.jpg", "OfferListingId" : "g9vrarF5YVkV%2B6yDCTp6R8FW67lZc8%2FKGrM%2BmFzl7pt8Yf%2By5AMI3szLnavtftjZLLsBEaNfZlrZAbHcHnJjtFrgO0MI2ntAlbLPS95sDqAL1wDs%2FzRnPblJA%2BNlnQGKipVLy2tyZzA%3D", "Availability" : "Usually ships in 1-2 business days", "MerchantName" : "Liquid Planet Online"
}));
vs.add(new Variation({"Size" : "12-CUP", "Asin" : "B000CNXBDS", "Price" : "$49.90", "PriceAmount" : 4990, "ListPrice" : "$50.00", "ListPriceAmount" : 5000, "ImageURL" : "http://ecx.images-amazon.com/images/I/21pAvzEZjJL._SL210_.jpg", "OfferListingId" : "enBxfC1sLz3uIjJHP494t89WXevo2nzkPvLBKvb4%2BYZM8CRNs7FmRC8az7v0vrfGPaDjpXSiRuR1ftOJJ1FATXe2FtxlPJxeX%2B0O2tYY4bL4l8qJ3S%2B%2FcT9j25L3oWnLiFk5jWTRR7Q%3D", "Availability" : "Usually ships in 1-2 business days", "MerchantName" : "Liquid Planet Online"
}));
initializeVariationSelector(vs, 'dynVariationSelector');
Product Description
Bodum’s coffee press is recognized worldwide as one the best ways to brew coffee. Imagine a cup, made to your liking in just 4 minutes! Expertly crafted with a stainless steel filter system, heat-resistant borosilicate glass beaker and stay cool handle and knob. Makes 3 cups. Two-year limited warranty.
addHandlers();
function addHandlers()
{
if (goVariationSet == null ||
AJSEventHandler == null ||
VariationSetEvent == null) {
return;
}
goVariationSet.registerEvent(VariationSetEvent.DIMENSION_HOVER,
new AJSEventHandler(null, notAvailableHover_handle));
goVariationSet.registerEvent(VariationSetEvent.DIMENSION_SELECTED,
new AJSEventHandler(updateDimensionText_init, updateDimensionText_handle));
goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED,
new AJSEventHandler(updatePrice_init, updatePrice_handle));
goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED,
new AJSEventHandler(updateAvail_init, updateAvail_handle));
goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED,
new AJSEventHandler(null, updateOfferId_handle));
goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED,
new AJSEventHandler(updateBuyButton_init, updateBuyButton_handle));
goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED,
new AJSEventHandler(updateImage_init, updateImage_handle));
var buybtn = document.getElementById('buybutton');
var form = document.buybox;
if (buybtn != null && form != null) {
if (document.body.addEventListener) {
buybtn.addEventListener('mouseover', buyButtonMouseover, false);
buybtn.addEventListener('mouseout', buyButtonMouseout, false);
form.addEventListener('submit', cartSubmit, false);
} else {
buybtn.attachEvent('onmouseover', buyButtonMouseover);
buybtn.attachEvent('onmouseout', buyButtonMouseout);
form.attachEvent('onsubmit', cartSubmit);
}
}
}
function updateDimensionText_init()
{
var spans = document.getElementsByTagName("span");
for (var i = 0; i < spans.length; i++)
{
if (spans[i].className == “dimensionSelectorLabel”)
{
spans[i].innerHTML = AJSStrings.get(”choose one”);
}
}
}
function updateDimensionText_handle(event)
{
if (!event.type || event.type != VariationSetEvent.DIMENSION_SELECTED) return;
var dn = event.dimensionName;
var element = document.getElementById(’dimensionSelectorLabel_’ + dn);
if (element) {
var value = event.dimensionValue;
if (value == null) {
value = AJSStrings.get(”choose one”);
}
element.innerHTML = value;
}
}
function notAvailableHover_handle(event)
{
if (!event.type || event.type != VariationSetEvent.DIMENSION_HOVER
|| goVariationSet == null) return;
var div = document.getElementById(’variationNotAvailable’);
if (div == null) return;
var dn = event.dimensionName;
var dv = event.dimensionValue;
if (dn == null && dv == null) {
div.style.display = ‘none’;
} else if (!goVariationSet.isDimensionValueAvailable(dn, dv)) {
var dims = goVariationSet.getAllConstraints();
dims[dn] = dv;
var out = AJSStrings.get(”Not available in”) + ‘<br\/>’;
for (var d in dims) {
out += AJSStrings.getFallback(d) + ‘: <span class=”notAvailHighlight”>’ + dims[d] + “<\/span><br\/>”;
}
var img = document.getElementById(’detailProductImage’);
var width = (img == null) ? 180 : img.width + 10;
div.style.width = width;
div.innerHTML = out;
div.style.display = ‘block’;
}
}
function updatePrice_init()
{
var offerPrice = document.getElementById(’detailOfferPrice’);
var listPrice = document.getElementById(’detailListPrice’);
if (offerPrice == null) return;
this.defaultPrice = offerPrice.innerHTML;
if (listPrice != null) {
this.defaultListPrice = listPrice.innerHTML;
}
}
function updatePrice_handle(event)
{
if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var offerPrice = document.getElementById(’detailOfferPrice’);
var listPrice = document.getElementById(’detailListPrice’);
if (offerPrice == null) return;
var variation = event.variation;
if (variation != null)
{
if (variation.attrs.Price) {
offerPrice.innerHTML = variation.attrs.Price;
}
if (listPrice != null &&
variation.attrs.ListPrice &&
(variation.attrs.ListPriceAmount > variation.attrs.PriceAmount)) {
listPrice.innerHTML = variation.attrs.ListPrice;
}
}
else
{
offerPrice.innerHTML = this.defaultPrice;
if (listPrice != null) {
listPrice.innerHTML = this.defaultListPrice;
}
}
}
function updateAvail_init()
{
var element = document.getElementById(’dimSelectAvailability’);
if (element == null) return;
this.defaultAvailability = element.innerHTML;
}
function updateAvail_handle(event)
{
if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var element = document.getElementById(’dimSelectAvailability’);
if (element == null) return;
var variation = event.variation;
if (variation != null)
{
var text = “”;
if (variation.attrs.Availability) {
text = variation.attrs.Availability;
}
if (variation.attrs.MerchantName) {
if (text != “” && !text.match(/\.\s*$/)) {
text += ‘.’;
}
text += ” ” + AJSStrings.get(’Ships from sold by’) + ” ” +
variation.attrs.MerchantName;
}
element.innerHTML = text;
}
else if (this.defaultAvailability != null)
{
element.innerHTML = this.defaultAvailability;
}
}
function updateOfferId_handle(event)
{
if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var form = document.buybox;
if (form == null || form.dynASIN == null || form.dynOfferId == null) return;
var variation = event.variation;
if (variation != null &&
variation.attrs.OfferListingId != null &&
variation.attrs.Asin != null)
{
form.dynASIN.value = variation.attrs.Asin;
form.dynOfferId.value = variation.attrs.OfferListingId;
}
else
{
form.dynASIN.value = ”;
form.dynOfferId.value = ”;
}
}
function updateBuyButton_init()
{
var element = document.getElementById(’buybutton’);
if (element == null) return;
element.style.cursor = “not-allowed”;
}
function updateBuyButton_handle(event)
{
if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var element = document.getElementById(’buybutton’);
if (element == null) return;
if (event.variation == null) {
element.style.cursor = “not-allowed”;
} else {
element.style.cursor = “pointer”;
}
}
function buyButtonMouseover(event)
{
if (goVariationSet == null) return;
if (goVariationSet.selectedVariation == null) {
var div = document.getElementById(’chooseVariationBFCartAdd’);
if (div != null) {
div.style.display = ‘block’;
}
}
}
function buyButtonMouseout(event)
{
var target = (event.target) ? event.target : event.srcElement;
var div = document.getElementById(’chooseVariationBFCartAdd’);
if (div != null) {
div.style.display = ‘none’;
}
}
function cartSubmit(event)
{
if (goVariationSet == null ||
goVariationSet.selectedVariation != null) {
return true;
} else {
if (event.preventDefault) { event.preventDefault(); }
return false;
}
}
function updateImage_init()
{
var img = document.getElementById(’detailProductImage’);
if (img)
{
this.defaultImage = img.src;
}
var link = document.getElementById(’imageViewerLink’);
if (link)
{
this.defaultHref = link.href;
// replace current asin with a generic url for subsitutions
this.baseHref = link.href.replace(/\/images\/\w{10}/, “/images/%ASIN%”);
}
}
function updateImage_handle(event)
{
if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var img = document.getElementById(’detailProductImage’);
var link = document.getElementById(’imageViewerLink’);
var variation = event.variation;
var imgsrc, href;
if (variation && variation.attrs.ImageURL)
{
imgsrc = variation.attrs.ImageURL;
href = this.baseHref.replace(/%ASIN%/, variation.attrs.Asin);
}
else
{
imgsrc = this.defaultImage;
href = this.defaultHref;
}
if (img) img.src = imgsrc;
if (link) link.href = href;
}
Product Details
Features
- Borosilicate glass/stainless steel
- Dishwasher safe
Customer Reviews
glass carafe broke easily
I use a variety of french press coffee makers (whicheve is least expensive). The Bodum 4-cup press was not the least expensive but I wanted to try it anyway. The pouring spout of the glass carafe broke after the first week when it came into relatively gentle contact with another item in my sink. I went to our local Ross store and purchased a 3-cup french press from another brand for $3.99 + tax.
luv this french press, but…
i think this is a great way to make coffee. i love the simplicity. i have never had one of these before so i can’t make a comparison here, just a few comments.
Overall i am quite happy with this press, but have some design complaints:
1. wish it had measuring lines on the side, so i could more easily remember how much water to add. i heat water in an electric teapot and usually make only one cup, so i have figured out how much water i need to put in it and have lined that up with some writing on the glass container (thank goodness there is writing on the side), but if i need to make more cups, i will have to figure that out and remember that too. i know its european, but any numbered lines would have helped. (yes, i know i could measure the water before heating it, but i usually have water standing in the electric kettle, so i dont know exactly how much im heating up)
2. even though the plunger does a great job filtering the coffee, afterwards the grinds get stuck between the mesh and the metal holding it and i have to spend some time rinsing them out. this wouldnt happen with a finer grind, so maybe i just need to learn how to get the grind just right. but i still think its a problem that could have been designed away.
3. its says its dishwasher safe and i have done it. but now i noticed that water is getting trapped in the lid between the metal top and plastic part and if i shaked it i could here it sloshing inside. i couldnt figure out how to take it apart to dry it properly. all i could do was keep shaking the water out through the seems. so, i won’t be putting the top in the dishwasher again, cuz i am afraid of getting any soapy water in my coffee. i think the top should have had a seemless design.
all that said, im still happy with my new french press, just wish their design team reads these comments 