Nieuw lid |
|
Hier de code
function laden(){
//alert(readCookie('bestel'));
//eraseCookies();
var id = "";
document.getElementById("inhoudlijk").innerHTML = "";
if(readCookie('bestel')){
bestelling = readCookie('bestel');
alert(bestelling);
var aantalAankoop = bestelling.split('+');
//oForm = document.createElement('form');
// oForm.setAttribute("action","mailto:bjorn.lonneville@howest.be");
// oForm.setAttribute("name","bestelformulier");
for ( var i = 0; i < aantalAankoop.length; i++ ){
var apart = aantalAankoop[i].split('*');
oDiv = document.createElement('div');
oDiv.setAttribute("id","product" + i);
oAantal = document.createElement('input');
oAantal.setAttribute("type","text");
oAantal.setAttribute("value",apart[0]);
oAantal.setAttribute("disabled","disabled");
oAantal.setAttribute("id","aantal" + i);
oAantal.setAttribute("size","1");
oTitel = document.createElement('input');
oTitel.setAttribute("type","text");
oTitel.setAttribute("value",apart[1]);
oTitel.setAttribute("disabled","disabled");
oTitel.setAttribute("id","titel" + i);
oTitel.setAttribute("size","30");
oKleur = document.createElement('input');
oKleur.setAttribute("type","text");
oKleur.setAttribute("value",apart[2].replace("_"," "));
oKleur.setAttribute("disabled","disabled");
oKleur.setAttribute("id","kleur" + i);
oKleur.setAttribute("size","7");
oMaat = document.createElement('input');
oMaat.setAttribute("type","text");
oMaat.setAttribute("value",apart[3]);
oMaat.setAttribute("disabled","disabled");
oMaat.setAttribute("id","maat" + i);
oMaat.setAttribute("size","3");
oPrijs = document.createElement('input');
oPrijs.setAttribute("type","text");
oPrijs.setAttribute("value",apart[4]);
oPrijs.setAttribute("disabled","disabled");
oPrijs.setAttribute("id","prijs" + i);
oPrijs.setAttribute("size","3");
oVerwijder = document.createElement('input');
oVerwijder.setAttribute("type","button");
oVerwijder.setAttribute("value","Verwijderen");
oVerwijder.setAttribute("id",i);
oVerwijder.onclick = function() {alert(oVerwijder.id);};
alert(oVerwijder.id);
oDiv.appendChild(oAantal);
oDiv.appendChild(oTitel);
oDiv.appendChild(oKleur);
oDiv.appendChild(oMaat);
oDiv.appendChild(oPrijs);
oDiv.appendChild(oVerwijder);
document.getElementById("inhoudlijk").appendChild(oDiv);
}
function laden(){ //alert(readCookie('bestel')); //eraseCookies(); var id = ""; document.getElementById("inhoudlijk").innerHTML = ""; if(readCookie('bestel')){ bestelling = readCookie('bestel'); alert(bestelling); var aantalAankoop = bestelling .split('+'); //oForm = document.createElement('form'); // oForm.setAttribute("action","mailto:bjorn.lonneville@howest.be"); // oForm.setAttribute("name","bestelformulier"); for ( var i = 0; i < aantalAankoop.length; i++ ){ var apart = aantalAankoop [i ].split('*'); oDiv = document.createElement('div'); oDiv.setAttribute("id","product" + i); oAantal = document.createElement('input'); oAantal.setAttribute("type","text"); oAantal.setAttribute("value",apart[0]); oAantal.setAttribute("disabled","disabled"); oAantal.setAttribute("id","aantal" + i); oAantal.setAttribute("size","1"); oTitel = document.createElement('input'); oTitel.setAttribute("type","text"); oTitel.setAttribute("value",apart[1]); oTitel.setAttribute("disabled","disabled"); oTitel.setAttribute("id","titel" + i); oTitel.setAttribute("size","30"); oKleur = document.createElement('input'); oKleur.setAttribute("type","text"); oKleur.setAttribute("value",apart[2].replace("_"," ")); oKleur.setAttribute("disabled","disabled"); oKleur.setAttribute("id","kleur" + i); oKleur.setAttribute("size","7"); oMaat = document.createElement('input'); oMaat.setAttribute("type","text"); oMaat.setAttribute("value",apart[3]); oMaat.setAttribute("disabled","disabled"); oMaat.setAttribute("id","maat" + i); oMaat.setAttribute("size","3"); oPrijs = document.createElement('input'); oPrijs.setAttribute("type","text"); oPrijs.setAttribute("value",apart[4]); oPrijs.setAttribute("disabled","disabled"); oPrijs.setAttribute("id","prijs" + i); oPrijs.setAttribute("size","3"); oVerwijder = document.createElement('input'); oVerwijder.setAttribute("type","button"); oVerwijder.setAttribute("value","Verwijderen"); oVerwijder.setAttribute("id",i); oVerwijder.onclick = function() {alert(oVerwijder.id);}; alert(oVerwijder.id); oDiv.appendChild(oAantal); oDiv.appendChild(oTitel); oDiv.appendChild(oKleur); oDiv.appendChild(oMaat); oDiv.appendChild(oPrijs); oDiv.appendChild(oVerwijder); document.getElementById("inhoudlijk").appendChild(oDiv); }
|