Altes Köln

Widget:GOV-Test

Aus Altes Köln
Wechseln zu:Navigation, Suche

Laden der GOV-Seite mit Javascript (fetch)

<script>

 fetch('https://gov.genealogy.net/item/show/HOHAUSJO30MX')
   .then(response => response.text())
   .then(data => {
     document.getElementById('external-content').innerHTML = data;
   })
   .catch(error => {
     console.error('Error loading external content:', error);
   });

</script>

Laden der Grafik mit übergeordneten Objekten mit Javascript (fetch)

<script>

 fetch('https://gov.genealogy.net/item/relationshipGraph/HOHAUSJO30MX?full-size=1')
   .then(response => response.text())
   .then(data => {
     document.getElementById('external-content').innerHTML = data;
   })
   .catch(error => {
     console.error('Error loading external content:', error);
   });

</script>


Einfaches HTML (nur Hyberlink auf GOV)

Hello World

Die GOV-Daten <a href="https://gov.genealogy.net/item/show/HOHAUSJO30MX">finden Sie hier</a>.

Aufruf von GOV mit Object

<object data="https://gov.genealogy.net/item/show/HOHAUSJO30MX" width="600" height="400"></object>

Aufruf von GOV mit Iframe

<iframe src="https://gov.genealogy.net/item/show/HOHAUSJO30MX" width="1000" height="800"></iframe>