- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2019 09:25 AM
How do I enable the ability to use iframe html tags in KB articles?
We are using Jakarta.....
thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2019 09:32 AM
You can edit the HTMLSanitizerConfig script include to whitelist iFrame tags.
Replace line 6-11 with the following:
HTML_WHITELIST : {
globalAttributes: {
attribute:[],
attributeValuePattern:{}
},
iframe:{
attribute:["width", "height","src","frameborder","allow","allowfullscreen"],
attributeValuePattern:{}
},
},

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2019 09:32 AM
You can edit the HTMLSanitizerConfig script include to whitelist iFrame tags.
Replace line 6-11 with the following:
HTML_WHITELIST : {
globalAttributes: {
attribute:[],
attributeValuePattern:{}
},
iframe:{
attribute:["width", "height","src","frameborder","allow","allowfullscreen"],
attributeValuePattern:{}
},
},
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2019 11:43 AM
I got around to trying this and it does not work. Any suggestions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2019 11:57 AM
I figured it out....The answer is the page in the iframe has to be an SSL as well.