javascript:(function()
{
var shoppingBasket = document.getElementById("shoppingBkt");
if(shoppingBasket == null)
{
alert("shopping basket not found");
return;
}
var tbdy = shoppingBasket.getElementsByTagName('tbody')[0];
var rows = tbdy.getElementsByTagName('tr');
var str = "[COLOR=\"Yellow\"][b]YOUR BASKET[/b][/COLOR]\n";
var images = "";
var thumbnails = 'yes';
console.log('Your Basket');
for (var i=1; i < rows.length - 4; i++)
{
var row = rows[i];
var cells = row.getElementsByTagName('td');
if (row.className == "basket_option")
{
var inputs = row.getElementsByTagName('input');
/* a complete system with no option price or count */
if(inputs.length == 0)
{
var cell = cells[0];
for (var j=0; j < cell.childNodes.length; j ++)
{
var option = cell.childNodes[j];
if(option.nodeName == "#text")
{
var desc = "[COLOR=\"Wheat\"]" + option.data + "[/COLOR]\n";
console.log(' option desc: ' + desc);
str += desc;
}
}
}
/* a fully configurable build. */
else if(inputs.length == 1)
{
var desc = cells[0].childNodes[2].data;
var qty = cells[1].childNodes[0].value;
var price = cells[2].childNodes[0].innerText;
console.log(' option desc: ' + desc);
console.log(' option qty: ' + qty);
console.log(' option price: ' + price);
str += "[COLOR=\"Wheat\"]" + qty + " x " + desc + "[/COLOR] [b][COLOR=\"Yellow\"]" + price + "[/COLOR][/b]\n";
}
}
else
{
var image = cells[0].childNodes[0].src;
var desc = cells[1].childNodes[0].textContent;
var link = cells[1].childNodes[0].href;
var qty = cells[2].childNodes[0].value;
var price = cells[3].childNodes[0].innerText;
var total = cells[4].childNodes[0].innerText;
console.log('image: ' + image);
console.log('desc: ' + desc);
console.log('link: ' + link);
console.log('qty: ' + qty);
console.log('price: ' + price);
images += "[url=\"" + link + "\"]" + "[img]" + image + "[/img][/url] ";
str += qty + " x " + "[url=\"" + link + "\"]" + desc + "[/url] " + "[b][COLOR=\"Yellow\"]" + price + "[/COLOR][/b]";
if(qty > 1)
{
str += " [b][COLOR=\"DarkOrange\"](" + total + ")[/COLOR][/b]";
}
str += "\n";
}
}
/* shipping costs */
var shipping = rows[rows.length - 3];
var shippingCells = shipping.getElementsByTagName('td');
var shippingValue = shippingCells[2].textContent;
/* grand total */
var total = document.getElementById('orderTotal');
var totalCells = total.getElementsByTagName('td');
var totalValue = totalCells[2].textContent;
console.log('Total: ' + totalValue + "(shipping " + shippingValue + ")");
str += "[b]Total : [COLOR=\"Yellow\"]" + totalValue + "[/COLOR][/b] " + "(includes shipping : " + shippingValue + ").\n";
/* thumbnails*/
if(thumbnails == 'yes') str += "\n" + images + "\n\n";
console.log(str);
function copyIntoClipboardIE(text)
{
if (window.clipboardData && window.clipboardData.getData)
{
window.clipboardData.setData("Text", str);
}
};
function copyIntoClipboardSWF(text)
{
var flashId = 'flashId-HKxmj5';
var clipboardSWF = '_clipboard.swf';/*'http://appengine.bravo9.com/copy-into-clipboard/clipboard.swf';*/
if(!document.getElementById(flashId)) {
var div = document.createElement('div');
div.id = flashId;
document.getElementById('maincell').appendChild(div);
}
document.getElementById(flashId).innerHTML = '';
var content = '<div id=\"OcUKBBGenerator\"><h1 class=\"bigred\">Your Cart Contents BB-Code</h1><p>Copy and paste the following into the forums:</p><textarea id=\"OcUKBBGeneratorTextArea\" cols=\"130\" rows=\"20\" onclick=\"this.focus();this.select()\" style=\"width:99%\" readonly=\"readonly\">' +
text +
'</textarea></div>';
/*
var content = '<embed src="' +
clipboardSWF +
'" FlashVars="clipboard=' + encodeURIComponent(text) +
'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
*/
document.getElementById(flashId).innerHTML = content;
document.getElementById('OcUKBBGeneratorTextArea').focus();
document.getElementById('OcUKBBGeneratorTextArea').select();
};
copyIntoClipboardIE(str);
copyIntoClipboardSWF(str);
})();