Skip to content

Instantly share code, notes, and snippets.

View cuheguevara's full-sized avatar

Suhendra Yohana Putra cuheguevara

View GitHub Profile
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script language=javascript>
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
@cuheguevara
cuheguevara / HelloWorld.php
Created September 17, 2012 00:12
Aplikasi Hello World Menggunakan PHP
<?php
echo "Hello World ! ";
?>