Hi all,
I am trying to add a web container to a webpage. I have injected the following code into the header of my site:
<script defer src="https://widgets.jobbio.com/partner_fluid_widgets_v1.6.1/display.min.js" id="jobbio-display-script"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
jobbio_display.widget({
slug: 'learn-bi-jobs',
container: 'widget-display',
style: 'masonry',
count: 5,
type: 'multiple',
content: 'jobs',
searchTerm: 'business intelligence’,
});
}, false);
</script>
And then on the web page I have added a code block with the following code...
<div id='widget-display' class='jobbioapp'></div>
This is not displaying anything at all. TBH, I don't really know what I'm doing but am hoping someone can give me some pointers.
Thanks!