Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Code:a.class1 { background-color: #c2c9d1; color: black; width: 160px; text-align: center; text-decoration: none; display: inline-block; border-radius: 9px; }
Bei mir klappte es mit Fiddle. :)EDDIT verstehe nicht ,immer wenn ich auf den link klicke kommt error. habt ihr das auch . habe die fiddle jetzt 3 mal gesogespeichert und sobald ich sie hier rein poste und sie anklicke kommt error. das verstehe ich irgendwie nicht. aber wenn man es öfters versucht geht es irgendwann. hat fiddle mal wieder probleme
so ändern??Code (text): if (idx > 1) urls.push($(ele).html());
if (idx > 2) urls.push($(ele).html());
if (idx > 2 and < X) urls.push($(ele).html());
ne das sollte wohl nicht klappen. ich würde eine if abfrage machen . zb if(idx==x){return;} .Wobei X dann für die Zeile steht die ausgeklammert werden soll.Code:if (idx > 2 and < X) urls.push($(ele).html());
$('#openModal').css('display', 'block') //Hier
idx = Math.floor(Math.random() * urls.length);
$('#zlink').text("Wir könnten heute bei " + $(urls[idx]).text() + " bestellen");
$('.close').click(function () {
$('#openModal').css('display', 'none') //Hier
});
Hier fehlen ein paar Semikolons am Ende der Zeile. .
var bla = Math.floor((Math.random() * urls.length) + 1);
var idx = (Math.random() * urls.length).toString().replace('.', '').substring(bla - 1, bla);