Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View brunobc182's full-sized avatar
🏠
Working from home

Bruno Chagas brunobc182

🏠
Working from home
View GitHub Profile
function getUrlParameter(name) {
name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');
var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
var results = regex.exec(location.search);
return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
};
function getCookie(name) {
var value = '; ' + document.cookie;
var parts = value.split('; ' + name + '=');