limittext js

PHOTO EMBED

Thu Sep 05 2024 14:40:57 GMT+0000 (Coordinated Universal Time)

Saved by @BilalRaza12

jQuery(document).ready(function($) {
    $('.toggle-btn').on('click', function() {
        var $this = $(this); // Store the clicked button
        var content = $this.prev('.testicontent'); // Get the related content before the button
        var fullText = content.find('.full-text'); // Find the full text within the content
        var shortText = content.find('.short-text'); // Find the short text within the content

        if (fullText.is(':hidden')) {
            fullText.show();
            shortText.hide();
            $this.text('See Less');
        } else {
            fullText.hide();
            shortText.show();
            $this.text('See More');
        }
    });
});

to hide the short text 




to sho the full text

jQuery(document).ready(function($) {
    $('body').on('click', '.toggle-btn', function() {
        var $this = $(this);
        var content = $this.siblings('.testicontent'); 
        var fullText = content.find('.full-text');
        var shortText = content.find('.short-text');

        // Toggle between showing the full text and short text
        if (fullText.is(':visible')) {
            fullText.hide(); 
            shortText.show(); 
            $this.text('See More'); 
        } else {
            fullText.show(); 
            shortText.hide(); 
            $this.text('See Less'); 
        }
    });
});


this html
<div class="testicontent testi-content">
    <span class="short-text">Serious suction great results This is by far a Brilliant hoover! The suction is amazing I
        have a very hairy dog and my Son's husky stays most weekends. It picks up all the hair easily. I have had many
        branded hoovers, and this one is the most powerful I have used...</span>
    <span class="full-text" style="display: none;">I have had many branded hoovers and this one is the most powerful I
        have used it's been great with my cats' long white fur. No more rubbing carpet edges with a damp cloth! Plus,
        great if you suffer from Asthma or dust allergies; no more sneezing when using it as no dust escapes from it.
        The carpet cleaning is great for intensive cleaning and removes stains effortlessly. All cleaner accessories fit
        neatly into the water tank. It really has been a pleasure cleaning my floors and upholstery with The Aqua +.
        Thank you for choosing me to test out the Thomas Pet & Family cleaner and for making my hoovering a pleasant and
        satisfactory experience.</span>
</div>
<a href="javascript:void(0);" class="toggle-btn">See More</a>
content_copyCOPY