Client-side code should not use DOM manipulation techniqueIssue As per the best practises it is not recommended to use DOM Manipulation techniques in the client-side scripting.CauseAvoid Document Object Model (DOM) manipulation if possible. It can cause a maintainability issue when the instance is updated. when using DOM manipulation methods, you have to reference an element in the DOM by id or using a CSS selector. When referencing out-of-box DOM elements, there is a risk that the element ID or placement within the DOM could change thus causing the code to stop working and/or generate errors. ResolutionInstead, use the GlideForm API or consider a different approach for the solution.