How do you add page titles to pages via BetterForms? I thought it would be as simple as adding it to onFormLoad, but it isn’t doing anything.
"onFormLoad": [{ "action":"function", "function":"document.title = 'Snow Removal Sign Up'" }],
How do you add page titles to pages via BetterForms? I thought it would be as simple as adding it to onFormLoad, but it isn’t doing anything.
"onFormLoad": [{ "action":"function", "function":"document.title = 'Snow Removal Sign Up'" }],
Solved my own issue. I moved the onFormLoad into namedActions.
“namedActions”: {
“onFormLoad”: [{
“action”: “function”,
“function”: “debugger ; document.title = ‘Snow Removal Sign Up’”
}],
Future Reference:
onFormLoad
is a reserved named action and all named actions sit in the namedActions
key.