Read more, Read less by JQuery
ReadMore and ReadLess Jquery Script ==> Tested <style> .morecontent span { display: none; } .morelink { display: block; } </style> <script> $(document).ready(function() { // Configure/customize these variables. var showChar = 100; // How many characters are shown by default var ellipsestext = "..."; var moretext = "Show more >"; var lesstext = "Show less"; $('.more').each(function() { var content = $(this).html(); if(content.length > showChar) { var c = content.substr(0, showChar); var h = content.substr(showChar, content.length - showChar); ...