Expanding Text

Just some words.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pharetra risus et fermentum porta.
Read more...

Code Example

    <script>
     function expandMe() {
       var expandedText = "Motorcycles have come a long way since the first production models came off the assembly line in 1894. In 1894, Hildrebrand & Wolfmuller became the first series production motorcycle, and the first to be called a motorcycle. In 2018, the three top motorcycle producers globally by volume are Honda, Yamaha from Japan, and Hero based in India. <a href='JavaScript:void(0)' onClick='minimizeMe();'>Less...</a<";
        document.getElementById("replaceMe").innerHTML = expandedText;
     }

     function minimizeMe() {
        var minimizedText = "Motorcycles have come a long way since the first production models came off the assembly line in 1894. <a href='JavaScript:void(0)' onClick='expandMe();'>Read more...</a<";
     document.getElementById("replaceMe").innerHTML = minimizedText;
     }
    </script>