Skip to content
Advertisement

Show more button in html

How can I make a show more button in HTML? I’m importing some text trough a variable in how do I make it so that like 20 characters are being showed and the rest will be showed once the button is pressed. This is what I have now:

JavaScript
JavaScript

Output I want:

Lorem ipsum dolor sit amet.

SHOW MORE

consectetur adipiscing elit. Integer tellus erat, tempor quis dolor a, gravida eleifend leo. Orci varius.

Advertisement

Answer

As per my comment, here’s a working example without any JavaScript, using <details><summary>.

How can I use this to split my text so that the preview has 20 characters or so and the summary has the rest?

Note how the first few words are in the clickable <summary> element, while the rest is outside:

JavaScript
JavaScript

Re: PHP

As you’re using PHP to render the HTML, use PHP’s strpos and substr to get the point in the string where it’s safe to split (in this case: it looks for the first space character after character 20):

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement