You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Offline

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

Please create a new Ticket and we will get back to you as soon as we can.

#117518 Popup an explaining text in an article

Posted in ‘Mediabox’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by Henk Haak on Tuesday, 20 January 2026 16:22 GMT

Henk Haak

How can I popup an explaining text for a frase in my post. In the documentation I see: Select a Popup Type, eg: JCE MediaBox Popups, to enable the popup and view the popup options. Unfortunately I do not see a text possibility

According to information at internet there should be a possibility to choose 'text'  and a field to insert the text should open. As I wrote: no possibility to choose 'text'.  Internet says For text: Select as  'Media Type' e.g. 'HTML Content' en type your text in the 'Content' field.

Ryan

I think you are referring to a tooltip or popover which are inline poups to display text associated with the target text. MediaBox creates modal popups from a link to display some content from some other source such as an image, video or article.

Some Joomla templates might include the ability to display popover or tooltip text. Which template are you using?

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

Henk Haak

No, I am not referring to a tooltip or popover.  I like to be able to activate a popup which explains with a text which gives an explanation for e.g. an abbreviation I use in my text. And ..... it should not be an URL

Ryan

I like to be able to activate a popup which explains with a text which gives an explanation for e.g. an abbreviation I use in my text. And ..... it should not be an URL

So you have some existing text on the site, on the same page as the text/abbreviation, and you want to display this in a modal popup?

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

Henk Haak

Yes, indeed!

 

Ryan

Please try JCE MediaBox 2.2.4 Beta 2 - https://www.joomlacontenteditor.net/downloads/mediabox/development

Clear your browser cache after install.

You can now manually create a popup link that uses the contents of a local DOM element as the source of the popup, by specifying a data-mediabox-content attribute containing the element id as the value, eg:

<a data-mediabox-content="#contentId" data-mediabox="1" data-mediabox-width="480" data-mediabox-height="240">Click</a>

where contentId is the id of the element, eg:

<div id="contentId">This is some text to display in the popup</div>

To hide the element, use a nested structure, eg:

<div hidden>
    <div id="contentId">This is some text to display in the popup</div>
</div>

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

Henk Haak

Thx, This is really what I wanted.