logotype
search

Jobylon

Jobylon is a recruitment platform that helps companies streamline their recruitment process. It is specifically focused on making it easy to create attractive and professional job ads and manage applications in a smooth way. This article contains everything you need to know when integrating Jobylon with PLAYipp.

Screenshot

Disclaimer: This is a 3rd party widget that we have tested, we are not able to guarantee that it will work in the future. We have tested this on our player Playport 2 with Chrome 95. You are able to read more here.

 

Follow these steps to get your widget up and running

  1. Contact your contact person or support at Jobylon to obtain a piece of code to embed Jobylon.
  2. Create a new text file:
    Use a text editor (e.g., Notepad or Visual Studio Code) to create a new HTML file.
    Paste the following code into the file:

    <html>
    <head>
        <title>Jobylon</title> 
        <meta name="viewport" content="width=960">
    </head>
    <body>
    Paste your script here
    </body>
    </html>

  3. Paste the Jobylon script:
    Paste the embed code you received from Jobylon between <body> and </body>. The code should now look like this:
    (NOTE the embed code varies from case to case and this is just an example)

    <html>
    <head>
        <title>Jobylon</title> 
        <meta name="viewport" content="width=960">
    </head>
    <body>
        <div id="jobylon-jobs-widget"></div>
        <script type="text/javascript">
          /*** CONFIGURATION ***/
          var jbl_company_id = 1742;
          var jbl_version = 'v2';
          var jbl_filters = {
            show_filters: 1
          };
          /*** DON'T EDIT BELOW THIS LINE ***/
          (function() {
            var el = document.createElement('script');
            el.src = 'https://cdn.jobylon.com/embedder.js';
            el.type = 'text/javascript';
            el.async = true;
            d = (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]);
            d.appendChild(el);
          })();
        </script>
    </body>
    </html>

  4. Save the file: Save the file with any name but give it the extension .html. Example: jobylon.html.

  5. To test that everything works as it should, open the HTML file in a browser on your computer.
    Double-click the HTML file: When you open the file in your browser, you should be able to see the Jobylon widget and the job postings that you have filtered and designed.

  6. Now that the file is complete and tested, it's time to upload it to PLAYipp. You can follow this guide: Publish HTML files  

 

Was this article helpful?