I have a list of items along with their information. The problem is that I want to show the description up to 50 characters. If this value is exceeded I want to show a show more button. When that is clicked, I want to show the full text. I want to do it with filters but I don't know how to achieve this.
{{jobs.description | limitTo: 2}}{{jobs.description.length>20 ? '...':''}}
Is there a possibility I can write <a href="">show more</a> link at the location of the characters ...?
Or is there another method of achieving my goal?