I have a paragraph as below, which may be of any length:
Breaking India: Western Interventions in Dravidian and Dalit Faultlines is a book written by Rajiv Malhotra and Aravindan Neelakandan which argues that India's integrity is being undermined.
I want it to appear as:
Breaking India: Western Interventions in Dravidian and Dalit Faultlines is a book written by Rajiv Malhotra...
below is the code which populates description in my website:
currently description goes to any no. of line based on product, i need to limit this to 3 lines.
para.innerText = para.innerText.substr(0, 100) + '...';
– Eu