Blog sobre desarrollo de aplicaciones Software basado en tecnología Microsoft (.Net/SQL/IIS) y otras (php/MySQL/Apache/Android...).
function getUrlParam(name) { var regexS = "[\\?&]" + name + "=([^&#]*)"; var regex = new RegExp(regexS); var tmpURL = window.location.href; var results = regex.exec(tmpURL); if (results == null) return ""; else return results[1];}