Gixen - Bid Totals

By Keith Hopkins Last update Apr 26, 2008 — Installed 65 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Gixen -  Bid Totals
// @namespace      www.gixen.com
// @description    Caluclate the total for all your pending snipes for www.gixen.com
// @include        http://www.gixen.tld/home_1.php?*
// ==/UserScript==

var allLinks, thisLink;
allLinks = document.evaluate(

    "//input[@id='editmaxbid']",
    document,
    null,
    XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
    null);

var total = 0.00;
var value, price;
for (var i = 0; i < allLinks.snapshotLength; i++) {
    thisLink = allLinks.snapshotItem(i);
    var value = thisLink.value;
    price = parseFloat(value);
	total += price;
    }
    document.title = "Gixen - Bid Total: " + total;