Bir çerez değer almak için bir alıcı var.
Şimdi isimle shares=
ve isimle 2 çerezim var obligations=
.
Bu alıcıyı sadece yükümlülükler çerezinden değerleri almak istiyorum.
Bunu nasıl yaparım? Böylece for
verileri ayrı değerlere böler ve bir diziye koyar.
function getCookie1() {
// What do I have to add here to look only in the "obligations=" cookie?
// Because now it searches all the cookies.
var elements = document.cookie.split('=');
var obligations= elements[1].split('%');
for (var i = 0; i < obligations.length - 1; i++) {
var tmp = obligations[i].split('$');
addProduct1(tmp[0], tmp[1], tmp[2], tmp[3]);
}
}