Gezielt Meta Properties finden und auslesen

Manchmal kommt es vor, dass man ein spezielles Meta Value braucht und es auslesen will. Wie macht man das? Es gibt ja kein spezielles getElementByMetaName oder getElementByMetaProperty. Bis jetzt! Den wir erstellen uns die Funktion mal selbst. Getreu dem Motto: „Ist das Mädel noch so lieb, Handbetrieb bleibt Handbetrieb!“.

https://www.youtube.com/watch?v=-x_ACSsbum4

Ich stelle Euch drei Varainten vor:

function getMetaContentByName(selector, key) {
    if(selector.length == 0) {console.error(“expect two Property. Given nothing or one!“);return false;}
    if(key.length == 0) {console.error(“expect Property. Given one!“);return false;}
    metas = document.getElementsByTagName("meta")
    for (let i = 0; i<t.length;i++) {
        if (t[i].getAttribute(selector) == key) 
        {
            return t[i].getAttribute("content");
            break;
        } 
    console.log(i);
    }
}

Oder

function getMetaContentByName(selector, key) {
	let metas = document.getElementsByTagName("meta")
	// convert HTMLCollection to an Array
	let _array = Array.from(metas);
	let _result = t1.filter(function(meta) {
		if(meta.getAttribute(selector)) {			
			if (meta.getAttribute(selector) == key) {
				return meta;
			}
		});
	return _result.length >0 ? _result[0].getAttribute("content") : null;
}

Oder

document.querySelectorAll( "meta[name='twitter:title'" )[0].getAttribute("content")

Falls Ihr andere Wege kennt, dann schreibt mir über Kommentar. Grüße!


Leave a Comment

Your email address will not be published. Required fields are marked *

*

*

Empfholende Artikel


Alphanumeric sorting of an array with objects according to the value of an object

June 30, 2022

Especially in the frontend it happens quite often that you want to sort an array, an array with objects according to a certain pattern. Javascript has very performant and nice functions. But you can use these functions not only in the frontend. If you write your backend with NodeJS you will also appreciate the array […]

JS reduce()

March 21, 2022

Man hat ein array und möchte zum Beispiel alle Zahlen im Array kumulieren. Mit der Javascript Array Function reduce() geht das ganz leicht.

Return days of a month in an array

March 14, 2022

You need all days of a certain month then you can use this function: getDaysInMonth = (month,year) => new Date(year, month, 0).getDate();console.log( […Array(getDaysInMonth(3, 2022)).keys()] ); Greets!

JS flat()

March 9, 2022

Es kommt schon mal vor das man geschachtelte arrays bekommt.Zum Beispiel: Man möchte aus einem geschachteltem Array alle Werte in einem Array sammeln. Mit der array Funktion flat() ist das kein Problem. Auch mehrstuffig verschachtelte Arrays kann man geradeziehen (flatten). Indem man der flat Funktion die Anzahl der verschachtelungen die aufgelöst werden sollen, mitgibt. Da […]

JS bind()

March 8, 2022

Ein einfaches besipiel um JS bind() function zu verdeutlichen:

Javascript – Fakultät berechnen

January 19, 2022

Ab und an braucht man das und nicht nur in der Kombinatorik. Wer es etwas übersichtlicher braucht (und dazu zähle ich mich auch) kann es auch in einer for schleife machen.