null
$11.95
RRP: $16.95
Share

Swivel Peeler

(No reviews yet) Write a Review
SKU:
03502
Country of Origin:
PRC
Sale
Add to Cart

Options

$11.95
RRP: $16.95

Info

SKU:03502

Info

SKU:
03502
Maximum Purchase:
20 units
Country of Origin:
PRC

Made perfectly for your Chasseur stainless steel and copper cookware

Made perfectly for your Chasseur stainless steel and copper cookware, these tools are made with quality stainless steel that is designed beautifully and made to last. For whatever you need for food preparation, cooking and serving, Chasseur has the perfect stainless steel tool for you.

  • Made of quality stainless steel
  • Durable - made to last
  • Suitable for use on stainless steel and copper cookware
  • Dishwasher safe
  • Beautifully designed handle
"); if(y == -1) y = test.lastIndexOf(""); if(y == -1) y = content.length; // If no HTML then just grab everything till end return content.slice(x + 1, y); } /** Loads a HTML page Put the content of the body tag into the current page. Arguments: url of the other HTML page to load id of the tag that has to hold the content */ function loadHTML(url, fun, storage, param) { var xhr = createXHR(); xhr.onreadystatechange=function() { if(xhr.readyState == 4) { //if(xhr.status == 200) { storage.innerHTML = getBody(xhr.responseText); fun(storage, param); } } }; xhr.open("GET", url , true); xhr.send(null); } /** Callback Assign directly a tag */ function processHTML(temp, target) { target.innerHTML = temp.innerHTML; } function loadWholePage(url) { var y = document.getElementById("storage"); var x = document.getElementById("displayed"); loadHTML(url, processHTML, x, y); } /** Create responseHTML for acces by DOM's methods */ function processByDOM(responseHTML, target) { target.innerHTML = "Extracted by id:
"; // does not work with Chrome/Safari //var message = responseHTML.getElementsByTagName("div").namedItem("two").innerHTML; var message = responseHTML.getElementsByTagName("div").item(1).innerHTML; target.innerHTML += message; target.innerHTML += "
Extracted by name:
"; message = responseHTML.getElementsByTagName("form").item(0); target.innerHTML += message.dyn.value; } function accessByDOM(url) { //var responseHTML = document.createElement("body"); // Bad for opera var responseHTML = document.getElementById("storage"); var y = document.getElementById("displayed"); loadHTML(url, processByDOM, responseHTML, y); }