Skip to content

Instantly share code, notes, and snippets.

View michaelbeltran's full-sized avatar
😀

michael michaelbeltran

😀
View GitHub Profile
var $_GET = new Array();
function GET() {
var url = location.search.replace("?", "").split("&");
for (var index = 0; index < url.length; index++) {
var value = url[index].split("=");
$_GET[value[0]] = value[1];
}
}
GET();