Widgets Integration Guide


Savings Widget

The savings widget will display the Ownwell property tax appeal savings estimate for a given property. It will render a card that displays the savings amount with a button that will lead users to the ownwell.com sign up flow if the Sign Up widget is not installed, or will open the embedded sign up flow if it is.

Installation

To install the widget, add the following code to your HTML file:

1 <script src="https://api.ownwell.com/widgets/savings.js"></script>
Usage

To display the widget, add the following code to your HTML file:

1 2 3 4 5 6 7 8 9 10 <div id="ownwell-savings-widget" data-address="[Street Address]" data-city="[City]" data-state="[State]" data-county="[County]" data-zip="[Zip Code]" data-fips="[FIPS Code]" data-apn="[APN]" ></div>
Example

Sign Up Widget

The sign up widget will display a modal that will allow users to complete the Ownwell sign up process. When used in conjunction with the savings widget, it will be opened automatically when the savings widget CTA is clicked.

Installation

To install the widget, add the following code to your HTML file:

1 <script src="https://api.ownwell.com/widgets/sign-up.js"></script>
Usage

To display the widget, add the following code to your HTML file:

1 2 3 4 <div id="ownwell-sign-up-widget" data-partner-logo="[Partner Logo URL]" data-click-away="[true/false]"></div>
Example