Can I change the name of the forms tab from "New Submission" to the title of the form itself?
Question
Question
new submission tab
Replies
Ashley,
This did not work for me - Can you please provide the code needed to change this? I've entered this in both CSS & JS boxes and it actually creates errors with my other JS/CSS.
Thanks,
Nate
You only need the line in the JavaScript section. Also note that if you had just copied and pasted from above, that wouldn't work because you wouldn't be using straight quotes. Try
$('title').text("the new title you need")
Thanks Alexander!
Hi Katy, I see this now,
You can do using JavaScript
document.title = "Your custom form name here";
I hope that can help.
Does this work in New Forms designer?
I'm sorry, No, I've been trying different variants, even using external jQuery libraries, but I can't get it to work. I don't know how they're compiling the new interface of the forms, because using JavaScript is becoming a headache for it to work. I hope someone with knowledge can shed some light on this issue, because for me at least it's being very limited to use JavaScript in the new form design.
Hi Katy,
Yes, you can change the name of the forms tab from ‘New Submission’ to the title of the form itself. In the ‘CSS and JavaScript’ section of the Forms Designer, add the following to both the CSS and JavaScript section: $(‘title’).text(“the new title you need”)
Thanks,
Ashley