Skip to main content

Posts

Showing posts with the label Javascript

Script for Making Flip Text

As you can see at  https://goo.gl/jLgk6D    making flip text, Below is the script for making  that flip text. You can paste to the notepad then save file as html. Or also you can paste to blog post or blog page.   <script language="javascript"> </script> <script language="javascript"> // DEVELOPED By Jason [LovesReborn] // JavaScript Document function flip() { var result = flipString(document.getElementById('oriText').value); document.getElementById('flipped').value = result; } function flipString(aString) { aString = aString.toLowerCase(); var last = aString.length - 1; var result = ""; for (var i = last; i >= 0; --i) { result += flipChar(aString.charAt(i)) }