Benutzer:Mfchris84/common.js: Unterschied zwischen den Versionen

Aus ÖsterreichWiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „var temp = $(document).text(); var count = (temp.match(/♂/g) || []).length; $('#maleBio').html(count-1)“)
 
Keine Bearbeitungszusammenfassung
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
var temp = $(document).text();
$(function () {
var count = (temp.match(/♂/g) || []).length;
var temp = $(document).text();
$('#maleBio').html(count-1)
var count = (temp.match(/♂/g) || []).length;
$('#maleBio').html(count-1);
count = (temp.match(/♀/g) || []).length;
$('#femaleBio').html(count-1);
count = (temp.match(/-\sw\s/g) || []).length;
$('#werke').html(count);
}());

Aktuelle Version vom 4. Januar 2022, 23:34 Uhr

$(function () {
	var temp = $(document).text();
	var count = (temp.match(/♂/g) || []).length;
	$('#maleBio').html(count-1);
	count = (temp.match(/♀/g) || []).length;
	$('#femaleBio').html(count-1);
	count = (temp.match(/-\sw\s/g) || []).length;
	$('#werke').html(count);	
}());