How to remove 'Close Modal' text from SP Modal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2023 03:36 AM
Hi All,
I want to remove that 'Close Modal' text from SP Modal.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2023 03:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2023 08:36 AM
Hi @Community Alums Thank you for the reply.above threads are useful to remove the Cross 'X' button from modal.but I want to remove the only tooltip part.(Close Modal).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2023 07:21 AM
Hi @Sonu Parab ,
we have the same need to remove the "Close modal" tooltip. Did you solve this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2023 06:08 AM - edited ‎09-28-2023 06:09 AM
Hello @Smith Johnson
Yes, I have removed the Close Model text.
In my case I have added below script in the Client Controller section of the widget.
setTimeout(function() {
var button = document.querySelector('
button.removeAttribute('data-
button.removeAttribute('title'
}, 0);
Thank you,