Javascript SDK
Feathery's Javascript library allows you to embed Feathery forms, access form state, and modify form behavior.
What you need
Quickstart
<script src="https://cdn.jsdelivr.net/npm/@feathery/react@latest/umd/index.js"></script>
<div id='container'></div>
<script>
(() => {
Feathery.init('<SDKKey>');
// Change to true if your form uses Stytch or Firebase for login.
const loginEnabled = false;
Feathery.renderAt('container', { formId: '<formId>' }, loginEnabled);
})();
</script>
API Guide
Feathery.renderAt
Feathery.renderAtParameter
Type
Description
Last updated
Was this helpful?