Rabu, 01 Juni 2011

samples

Membuat Teks Box dengan script text area
ON CLICK AREA THAN PASTE IT..!!

Take your teks than coppy to replace under box area..!
Paste di area berikut untuk test.. kemudian klik Replace/Paste




code:
<script type="text/javascript">
function translate(phrase) {
   phrase = document.getElementById('input').value;
   phrase = phrase.replace(/why/g, "y");
   phrase = phrase.replace(/are/g, "r");
   phrase = phrase.replace(/you/g, "u");
   phrase = phrase.replace(/for/g, "4");
   phrase = phrase.replace(/to/g, "2");
   document.getElementById('output').value = phrase;
}
</script>
<textarea id="input" style="height: 61px; width: 503px;"></textarea>
<input onclick="translate();" type="button" value="Replace/Paste" />
<textarea id="output" style="height: 61px; width: 503px;"></textarea>