Product Description
All in one, a Healthy Rice Cooker and Slow Cooker. This cooker comes with separate inner pots and inner lids for rice and slow cooking to prevent flavor contamination and conveniently prepare a whole meal with one machine. The titanium-coated, extra-thick (3mm), non-stick rice cooking inner pot has rounded edges at the bottom for maximum heat distribution and optimum cooking. The multi-menu selections are ideal for white rice, mixed rice, rinse-free rice, sushi rice, brown rice, haiga rice, quick cooking, tofu cooking, slow cooking and steaming. There are High & Low slow cook temperature settings for up to 12 hours and the LCD clock and 24-hour preset timer allows for cooking completion at desired time. The convenient keep-warm function keeps rice warm and delicious after cooking without over-cooking. There is a special Tofu (soy curd) function for preparing nutritious and perfect homemade Tofu every time. The Steaming function includes a unique tray for preparing healthy steamed foods. Includes two Inner Pots and two Inner Lids, Tofu Container, Steaming Tray, Measuring Cup, Spatula & Multi-Language InstructionRetractable CordManual with Recipes IncludedCapacity - 10 cups uncooked (20 cups Cooked)Power Consumption - 910 Watts
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;
}
Customer Reviews
Perfect kitchen appliance
I love this handy kitchen helper. I originally bought it for the timer on the rice cooker and slow cooker capabilities - after all, with limited kitchen space, it’s always better to have appliances that combine several capabilities into one. So I have since gotten rid of my old fashion slower cooker and use this for stews, soups and rice “congee”. Since I bought this cooker, I have since had a baby who is now eating steamed food. So I now find this cooker indispensable for steaming all my baby’s veggies and fruits. I use it every day for steaming baby food, cooking rice and I even tried making the bread pudding. I’m always raving about this cooker, it is really the most useful appliance in my kitchen. Also love the 2 different cooking pots: 1 for rice and the other for everything else. Highly recommend this cooker.
Incredible!!!!!!!!!
I love my new toy!
I’m eating like a king and in most cases healthier than ever.
This baby can cook almost anything and it’ll take years to enjoy all the possibilities. I’m so glad I waited to buy a slow cooker and found this rice cooker, slow cooker combo. It’s easy to switch between the two and cleanup is a breeze. I don’t understand why it wasn’t designed for normal cups instead of the rice cup but I’ll get used to that minor annoyance which is a small price to pay for such an incredible machine.
I feel very satisfy with this!
At the beginning I read some of the reviews and I was afraid of it will have that chemical smell, but after I used it, it did have any chemical smell come out after the rice was done. So, basically I like this product and it works just fine with my family.