Connecting a Dataset URL to an Iframe Embed Element

Hi @teejay
You can do this using Velo.

I create a collection named ‘urls’.
It has field title and field url , which has URL to some site or page.

Add empty iFrame or use yours.

Here is the code snippet example.

import wixData from 'wix-data';

$w.onReady(function () {
    wixData.query('urls')
    .eq('title', 'Youtube')
    .find()
    .then(res => {
        $w('#iframe1').src = res.items[0].url;
    })
});

Here is live site example.
https://vladkl4.editorx.io/my-site-5

Try it on your way.
You can improve code and add functionality you need.

Is this something you are looking for?