Getting started

Installing the website widget

Verifying installation

Go to your website and open up the developer console in your browser. In Chrome, this can be done via the command ⌘ + option + J

Find the console from the bottom of the developer tools. Type in FBLY and press enter. If your plugin is installed properly, the command should return true. Your plugin is all set up!

If the script is not installed, you'll get an error like so:

If this is the case, please verify that the plugin is installed properly on your website.

Async script loading with Universal Widget Script (2024->)

Because FBLY.actions may not be available when trying to use custom actions and properties because of a late async loading of the main script, please load this script before your custom code:

<script src="https://embed.feedbackly.cloud/actions.js"></script>

or alternatively use the code found from that file as inline.

Custom configurations with Universal Widget Script (2024->)

For embedded survey widget, instead of inserting manually DIV tag to the website (found from Feedbackly dashboard) to mark a place where widget should be rendered, you can use these script configurations to define the position.

For <ID>, use ID found from the original DIV tag: fbly-embedded-<ID>.

fblytag('embedid', '<ID>'); //for auto tag generation for embedded survey widgets.
fblytag('appendto', 'footer'); //optional: <element name> | #<div id>. Example: footer | #mydivid
fblytag('position', 'top'); //optional: top | inside

Last updated