Problem One request we receive frequently is: How can I include a link on a page to return to the previous page? Solution If you view any of the codex detail pages, at the top of the page, you’ll see one of the following links: Return to Actions List or: Return to Previous Page or: [Read More…]
jQuery
Passing an Option in Query String and Setting Select Value
Overview Formidable provides a built-in method for setting a default value on fields by passing a query string parameter. To do this, simply pass the name of the parameter and its value in the query string, like this: /page-name/?color=blue If you want to capture the value of “blue” as the default value in a field, [Read More…]
Style Individual Radio Buttons on Select
The Problem How can I style the background color of individual radio buttons to highlight the one that’s selected? —Formidable Slack Community member The Approach There are a several ways for doing this and Formidable Forms makes it easy to implement any method you choose. This tutorial walks you through two solutions. The first is [Read More…]
Add a Data Attribute to Any Input Field
HTML data-* Attribute HTML Global attributes give elements meaning and context. Global attributes are common to all HTML elements; they can be used on all elements, including Formidable’s input fields, though they may have no effect on some elements. One attribute that is particularly useful is the data-* attribute. The data-* attribute forms a class [Read More…]
Repeaters and Complex jQuery Operations
Formidable Forms repeater fields work fine with basic math calculations. Learn how to do complex operations on repeaters with jQuery. [Read More…]