Feedier forms can be integrated right into your websites and applications (mobile or web) so the respondent can take the form without leaving your services. Exactly as a video in a web page, it would render the form into your applications and pages that you define.
This is easily possible with the use of IFRAME tags. If you're unsure of what an Iframe is, no problem here is a quick article.
- Go to the forms listing page
- Edit any form
- Click “Share”
- Click “Embedding Code”
Then, you will find inside the IFRAME code that you can copy in your application.
You can choose whether you'd like to show the form logo, and what height you'd like the form to be displayed in.
ou might need a developer to help you integrate it correctly.

Note: In the form URL you will see ?no_header=true. | ![]() |
Adding Context Attributes to the iframe
In order to get the most out of the iframe, you'll want to attach your metadata that you collect on your website/application.
By doing this, when someone leaves feedback, the metadata is attached to the feedback which can be analyzed in the future using the activity chart/PDF report and more.
Here's how the iframe code may look:
Add after all the attributes that need to be added with the query param with the src
.
The original src
value is http://feedier.co/FORMSLUG?no_header=true
Now we want to add attributes named first-name
, last-name
Within the iframe, this will be seen as:<iframe src="http://feedier.co/FORMSLUG?no_header=true&first-name=John&last-name=Doe" width="100%" height="600" frameBorder="0"></iframe>