All Collections
Canditates portal
Integrate applicant portal on website
How can I integrate the applicant portal on my website or intranet?
How can I integrate the applicant portal on my website or intranet?

Learn how to integrate the applicant portal directly into your website.

Raphael Mösch avatar
Written by Raphael Mösch
Updated over a week ago

If you need help with the implementation, please do not hesitate to contact us. The easiest way is via chat at the bottom right of the Dualoo.

Requirements

  • You need access to the website.

  • It is recommended that you forward this manual to the IT department or to those responsible for maintaining your website.

Copy URL applicant portal

1. Click on "Jobs" above You change to the job overview.

2. Click in the top left corner of the job overview on

3. You will now be forwarded directly to your application portal.

4. "Copy" the URL from the browser.

Integrate an applicant portal with iFrame and variable height

You can find an example on our website: here

If you have problems, please contact our support. We will gladly help you.

Now you have to copy the above URL into the designated place "copy the url of the application portal here". The "" must remain.

<script id="dualoo-iframe-1">
(function (){
var script=document.createElement("script");
script.src='https://jobs.dualoo.com/content/iframe/iframe_loader_v3.js';
script.onload = function(){
dualooIframe.addIframe({
elementId: 'dualoo-iframe-1',
portalUrl: 'copy the url of the application portal here'
});
}
document.head.appendChild(script);
})();
</script>
  1. Then copy all the code (from <script to </script>) and paste it into your website in the open positions. Your IT department or the person responsible for your website can usually do this for you.

  2. The applicant portal is now fully integrated.

Integrate several applicant portals with iFrame and variable height

The procedure is basically the same as for an applicant portal. You simply have to use a different code.
A maximum of 4 iFrames can be integrated on the exact same page of the website so that your career portal also remains clearly arranged.

<script id="dualoo-iframe-1">
(function (){
var script=document.createElement("script");
script.src='https://jobs.dualoo.com/content/iframe/iframe_loader_v3.js';
script.onload = function(){
dualooIframe.addIframe({
elementId: 'dualoo-iframe-1',
portalUrl: 'copy the url 1 of the application portal here'
});
}
document.head.appendChild(script);
})();
</script>

<script id="dualoo-iframe-2">
(function (){
var script=document.createElement("script");
script.src='https://jobs.dualoo.com/content/iframe/iframe_loader_v3.js';
script.onload = function(){
dualooIframe.addIframe({
elementId: 'dualoo-iframe-2',
portalUrl: 'copy the url 2 of the application portal here'
});
}
document.head.appendChild(script);
})();
</script>

<!-- Copy up to here if you want to include two application portals -->

<script id="dualoo-iframe-3">
(function (){
var script=document.createElement("script");
script.src='https://jobs.dualoo.com/content/iframe/iframe_loader_v3.js';
script.onload = function(){
dualooIframe.addIframe({
elementId: 'dualoo-iframe-3',
portalUrl: 'copy the url 3 of the application portal here'
});
}
document.head.appendChild(script);
})();
</script>

<!-- Copy up to here if you want to include three application portals -->

<script id="dualoo-iframe-4">
(function (){
var script=document.createElement("script");
script.src='https://jobs.dualoo.com/content/iframe/iframe_loader_v3.js';
script.onload = function(){
dualooIframe.addIframe({
elementId: 'dualoo-iframe-4',
portalUrl: 'copy the url 4 of the application portal here'
});
}
document.head.appendChild(script);
})();
</script>

<!-- Copy up to here if you want to include four application portals -->
Did this answer your question?