Change the Text on "add new option"
I have a lot of clients, when I use the ability to "add new option", that want the text to be something different. I agree, it's a better user experience. Knack does not have a native ability to do that, but with just a few lines of custom code, you can get it done. Check out this video if you want to know how to do this.
Here's the actual code:
// Use for the Knack Standard Theme to change Add New Option Text
$(document).on('knack-scene-render.any', function(event, scene) {
$("a.kn-add-option").html("Add New");
});
Thanks!