How to embed open positions list into your website
With ClayHR, you can have your own candidate portal, as well as embed your open positions into your website, so it is always up to date.
Embed Formats
You can use three formats for position embed List.
1. Brief
- Position name (hyperlink)
2. Normal
- Position name (hyperlink)
- Location
3. Expanded
- Position Name (hyperlink)
- Location
- Description
Brief Format: How to Embed brief format list into the webpage:
You can embed the following code into your webpage using two ways (iframe tag and embed tag).Note: In the code below, substitute CDOMAIN for your customer domain.1. Using iframe tag:
<iframe src="https://CDOMAIN.clayhr.net/job-board/position/embed?format=brief" width="300" height="300"> </iframe>
2. Using Embed tag:
<embed src="https://CDOMAIN.clayhr.net/job-board/position/embed?format=brief" width="300" height="300"> </embed>
Normal Format: How to Embed normal format list into the webpage:
You can embed the following code into your webpage using two ways (iframe tag and embed tag).IMPORTANT Note: In the below code substitute CDOMAIN for your own customer domain:1. Using iframe tag:
<iframe src="https://CDOMAIN.clayhr.net/job-board/position/embed?format=normal" width="300" height="300"> </iframe>
OR
<iframe src="https://CDOMAIN.clayhr.net/job-board/position/embed" width="300" height="300"> </iframe>
2. Using Embed tag:
<embed src="https://CDOMAIN.clayhr.net/job-board/position/embed?format=normal" width="300" height="300"> </embed>
OR
<embed src="https://CDOMAIN.clayhr.net/job-board/position/embed" width="300" height="300"> </embed>
Expanded Format: How to Embed expanded format list into the webpage:
You can embed the following code into your webpage using two ways (iframe tag and embed tag).IMPORTANT Note: In the below code substitute CDOMAIN for your own customer domain:1. Using iframe tag:
<iframe src="https://CDOMAIN.clayhr.net/job-board/position/embed?format=expanded" width="300" height="300">
</iframe>
2. Using Embed tag:
<embed src="https://CDOMAIN.clayhr.net/job-board/position/embed?format=expanded" width="300" height="300">
</embed>
Styling Guidelines
- You can always change height and width according to your requirements.
- iframe shows the default border, if you don't need the border in position list then you can use embed tag or attribute frameBorder="0" inside the iframe tag.