Skip to content

Instantly share code, notes, and snippets.

@scottwater
Created February 25, 2021 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottwater/4e40806d1acfb904a42cddc1e70543b5 to your computer and use it in GitHub Desktop.
Save scottwater/4e40806d1acfb904a42cddc1e70543b5 to your computer and use it in GitHub Desktop.
For those who cannot use standard input types. We recommend using type=email and type=tel
window.kolOptions = {
form: {
mappings: {
email: {
selector: "input[name='you_custom_selector']"
}
}
}
};
window.kolOptions = {
form: {
mappings: {
email: {
selector: "input[name='you_custom_selector']"
},
phone: {
selector: "input[name='you_custom_selector']"
}
}
}
};
window.kolOptions = {
form: {
mappings: {
phone: {
selector: "input[name='you_custom_selector']"
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment