Home » » Why use Lorem Ipsum If alternative is there

Why use Lorem Ipsum If alternative is there

Written By Anonymous on December 28, 2013 | 12:36:00 am

Why use Lorem Ipsum If alternative is there

What is Lorem Ipsum?
In publishing and graphic design, lorem ipsumis a placeholder text (filler text) commonly used to demonstrate the graphic elements of a document or visual presentation, such as font, typography, and layout, by removing the distraction of meaningful content. The lorem ipsum text is typically a mangled section of De finibus bonorum et malorum, a 1st-century BC Latin text by Cicero, with words altered, added, and removed that make it nonsensical and not proper Latin.
-wikipedia
Is there any Alternative to Lorem Ipsum?
Yes,There is option for you to use alternative text instead of lorem ipsum.Because Lorem Ipsum eats so many space of your template.So we decided to create a function that will generate dummy text for you to use in your web template or use as a dummy text.(like rand() in MSWORD will generate random text),Below are code of TechFiller.All you need to replace string with your string.

<script type="text/javascript">
/* Author: TheTechDigit.Com */
var texts=["First", "Second", "Third"]
function TechFill(word){
for (var i=0; i<word; i++)
document.write(texts[Math.floor(Math.random()*3)]+" ")
}
</script>

Simply call the function TechFill(Number) wherever you want to place dummy text.
<script>TechFill(1000)</script>

Photo Credit: blog.nateeul.com
Read This Article in

Follow us