Download Pricing Docs Blog Github
The FAQ-div logo

Turn any div into a FAQ



How?

Write your code as you would with any Q&A.
Questions are h3 elements
Add two lines.
Load the script & mark the FAQ start
Bam! A beautiful FAQ with awesome features!
A beautiful FAQ!


A good FAQ goes a long way

1 A FAQ can be effective in responding to the needs of your users, especially if it has good search functionality.

2 Potential users can learn more in a casual way. Questions that expand when clicked allows browsing without information overload.

3 Search engines will direct visitors to your website who search for a question similar to your FAQs.



Features

SEO friendly

The HTML source consists of headers and paragraphs, which is exactly what search engines use to crawl your website.

Using questions that people might actually Google for is an effective way to attract visitors.

Powerful search

A search bar is (optionally) added above the FAQ. It is backed by algorithms that sort results on different criteria, so that your users always find what they're looking for.

Highly configurable

Many features can be configured, e.g. turning off search or collapsing. All builtin texts can also be configured.

By default, a simple effective styling is applied, which you can fully tweak with CSS to make your FAQ match the rest of your website.

Links

You (and your users) can easily create links to individual questions. You can even create a link for a particular search.

Privacy

Your FAQ does not rely on 3d party services which may track your website visitors.

Lightweight

This JavaScript lib is less than 10kiB.



Examples

Select source
View result (or open in new tab)


Pricing

Hobby

$ 9



✓ 1 developer
✓ 1 project
✓ Lifelong license



Buy now

Pro

$ 19



✓ Up to 5 developers
✓ Unlimited projects
✓ Lifelong license



Buy now

Business

$ 199



✓ Unlimited developers
✓ Unlimited projects
✓ Lifelong license
✓ Priority support


Buy now

FAQ-div is free for Open Source: licensed under a GPLv3 license, you can use FAQ-div in Open Source projects if (and only if) these projects are public and licensed under GPLv3.

For any other use, you need to purchase a commercial license. The commercial license are royalty-free, lifetime licenses, with free access to all updates. See the License Agreement for details.



Docs

Usage

How should I write my FAQ?

The only constraint for the HTML of your FAQ is that the questions are <h3> headers. If you use an editor, this is probably something like the "heading 3" format. In markdown this is ### a heading.

The answers to the questions are usually formatted with paragraphs (<p>), but any other elements (e.g. images) can also be used.

How do I load the FAQ-div library on my page?

Download the FAQ-div lib and add it to your website's assets, then add the following HTML anywhere on your page (preferably in the head section):

<script src='faq-div.min.js'></script>

Alternatively, you can copy the source code and include the source directly:

<script>
...
</script>

At the moment, FAQ-div is not yet available via a CDN.

How do I apply FAQ-div?

There are two possible ways to apply FAQ-div. The practical approach is to add empty divs marked as "faq-start" and "faq-end", surrounding the content of your FAQ:

    <div class='faq-start'></div>
    <h3> Question 1 </h3>
    ...
    <h3> Question 2 </h3>
    ...
    <div class='faq-end'></div>

This approach is flexible, and e.g. works well with Markdown. The "faq-end" can be omitted, in which case all following elements (within the parent element) are converted.

The other approach is perhaps more natural (from a developer point of view), but it requires a change to the structure of the HTML. Wrap the content of your FAQ in a div that has the class "faq":

    <div class='faq'>
        <h3> Question 1 </h3>
        ...
        <h3> Question 2 </h3>
        ...
    </div>

How can I configure my FAQ?

Configurarion is done using the data attributes, e.g.:

<div class='faq' data-collapse='false'>

These are the configuration opions:

How can I style my FAQ?

The root element has classname faq. (If you use a faq-start div, the content is moved into the start div, and that div gets an additional faq class name.)

Inside the root element, the Q&A items are wrapped into divs with classname qa. In short, here are the CSS queries of interest:

For the collapse-icon and link-icon, the ::before CSS selector is used to set the Unicode char for the icon.

Also see the examples.

Can I create sections in my FAQ?

Yes, you can use <h1>, <h2> and <hr> elements to create a section. Everything below such element is considered part of the "section divider", until an <h3> is encountered again.

How does linking work?

Next to each question is an icon that can be clicked to change the browser url to the question's anchor. This url can be copied and used in links to that specific question.

You can also use https://example.com#faq:a-specific-search to link to the FAQ and directly initiating a search. (In case the page has multiple FAQ's, use e.g. prefix faq1: to target the right FAQ.)

Linking can be disabled using <div class='faq' data-link='false'>.

Compatibility

Does FAQ-div play well with Markdown?

Absolutely! This is why we have the option enclose your questions and answers with faq-start and faq-end divs. Because you can use plain HTML in Markdown (although not use markdown inside such HTML), this just works:

    <div class='faq-start'></div>
    ### Question 1
    ...
    ### Question 2
    ...
    <div class='faq-end'></div>

Can I create multiple FAQ's on a single page?

Yes, you could; FAQ-div is designed to deal with such scenarios.

What browsers are supported by FAQ-div?

FAQ-div is fully functional on all modern browsers (desktop and mobile). It may not work on older browsers (like Internet explorer). When it does not work, the FAQ is just <h3>'s and <p>'s, which is a pretty good fallback.

How does it work?

On page load, FAQ-div will select elements with the class "faq" and "faq-start", collect the content of your FAQ, and restructure the DOM accordingly.

In this process, it also builds an index for the search functionality. The search is performed by smart matching of the query against this index. The rest is mostly CSS.

What if my content is created after page load?

No worries! You can trigger FAQ-div using window.faqdiv.init(). It's safe to call it multiple times.

How do I add FAQ-div to my WordPress site?

Add the file faq-div.min.js to your website. Then add the below code to your functions.php:

add_action( 'wp_enqueue_scripts', 'addFaqDivScript');
function addFaqDivScript() {
    if ( is_page('your-page-title-or-id') ) {
        wp_enqueue_script('faq-div.min.js', '/path/to/faq-div.min.js');
    }
}

The /path/to/faq-div.min.js must be the script's path relative to the WordPress root directory, or it can be the full URL.

License and payments

Can I try FAQ-div before buying it?

Yes, you can download it, and play with it as long as you like, as long as any deployments are compliant with the GPLv3 license.

Is this a one-time payment or a recurring subscription?

The FAQ-div license is obtained as a one-time payment. The license gives you a life-long right to use the current version, plus updates for one year.

Can I use FAQ-div for commercial products?

Yes, but you'll need to purchase a license.

Do I need to purchase a license for open source projects?

This depends on the license of the website/product that you use FAQ-div in. If this is (compatible with) GPLv3, then you do not need a commercial license. In any other case, you do.

What about support?

When you purchase a license you have a right to support via Github. The business license gives priority support (via Github or almar AT almarklein.org).

Do you offer refunds?

No, you can try FAQ-div in advance. Therefore a purchase is final.

Is VAT included in the price?

No, the VAT differs per country, and Gumroad (our reseller) adds the VAT to the set price.

Can I add my company VAT number?

Yes, you can provide your company VAT number during checkout. The invoice will be updated accordingly.

Can I pay via wire transfer?

We make use of Gumroad to handle payments and invoicing. Gumroad supports creditcard and Paypal. If this is not an option for you or your company, contact me at almar AT almarklein.org, so we can arrange for a wire transfer (you will still get an invoice).




Made with by Almar Klein.