SHarePoint online field renaming Home › Forums › Classic DFFS › SHarePoint online field renaming Tagged: Rename Field Label This topic has 3 replies, 3 voices, and was last updated 6 years, 4 months ago by Alexander Bautz. Viewing 3 reply threads Author Posts April 17, 2018 at 18:28 #20585 Jay NebbenParticipant In the new form i’ve been using the code below to rename fields: $(spjs.dffs.fields[“Internalname”]).find(“td.ms-formlabel h3 nobr”)[0].childNodes[0].nodeValue = “NewName”; This does not seem to be working in Office 365. Error message attached Attachments:error.png April 17, 2018 at 19:55 #20608 Alexander BautzKeymaster In office 365 there are no h3 node (just a span with class ms-h3). Try changing it like this: jQuery("#dffs_FIELDINTERNALNAME").find("td.ms-formlabel nobr")[0].childNodes[0].nodeValue = "NewName"; Alexander August 2, 2018 at 15:21 #21613 Rick CedergrenParticipant What is the syntax difference for the display form? Your example is working in the new/edit forms, and I’ve tried several variants for the display form without success. We’re using SP 2016 on-prem. Thanks. August 2, 2018 at 23:32 #21629 Alexander BautzKeymaster Hi, In DispForm the HTML structure is different – try using this: jQuery("#dffs_FIELDINTERNALNAME").find(".ms-standardheader").text("NewName"); Alexander Author Posts Viewing 3 reply threads You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In