JSFiddle - React, Tailwind, and code Playground

by Craig Haywood

HTML

<textarea name="text">
Hi fname,

I just a notice from ReallySmart.art that you wanted more information. Oh, I almost forgot, my name is xxx and I will be your sponsor in ReallySmart.art

Since you wanted more information about the system, I would let you know what the system is like from someone on the inside...

If you watched the video, you already know that by the time you reach retirement for the first time, you would have already made back almost 2 thirds of your sign-up or joining fee.

The reason I mention this is because this makes it such a no-brainer. This is the only program i know of where you eventually get your whole sign-up fee back with little to no effort on your part.

As for the service, creating personalized images to send to my list is easy as pie and it does make a huge difference in click-throughs.

Anyway, I just thought I would introduce myself. If you have any questions, just hit reply, otherwise, if you are ready to join, here is my link again:

https://www.reallysmart.art/?u=xxx&fname=xxx

Hope to see you in one of my profit lines soon :-)

Regards
xxx xxx
</textarea>
<script src="http://www.google.com/jsapi"></script>
        <script language="javascript">
            google.load('prototype', '1.6.0.2');
        </script>

JavaScript

<script type="text/javascript" language="javascript">
            resizeIt = function() {
              var str = $('text-area').value;
              var cols = $('text-area').cols;

              var linecount = 0;
              $A(str.split("\n")).each( function(l) {
                  linecount += Math.ceil( l.length / cols ); // Take into account long lines
              })
              $('text-area').rows = linecount + 1;
            };

            // You could attach to keyUp, etc. if keydown doesn't work
            Event.observe('text-area', 'keydown', resizeIt );

            resizeIt(); //Initial on load
        </script>