WHERE CHILDREN LEAD THE WAY
Our vision
is that children and young people are viewed as
wise
and
important
and have to be included in
all decisions
and
actions
regarding them.
Our projects
PROJECT
PROJECT
PROJECT
PROJECT
PROJECT
PROJECT
Something
Something goes here, text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here!
document.querySelectorAll('.elementor-button, .carousel-wrapper').forEach(btn => {
btn.addEventListener('click', function() {
const postId = this.getAttribute('data-post-id');
// Finn elementene i popupen og sett inn innhold fra postId via REST API
fetch(`/wp-json/wp/v2/posts/${postId}`)
.then(res => res.json())
.then(post => {
document.querySelector('#popup .popup-title').textContent = post.title.rendered;
document.querySelector('#popup .popup-content').innerHTML = post.content.rendered;
document.querySelector('#popup .popup-image').src = post.featured_media_url; // evt. tilpass
});
});
});