Created
September 9, 2017 02:44
-
-
Save Sysetup/074a28f0d9963f688ea2db02965746ac to your computer and use it in GitHub Desktop.
Print var from url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <span><script>document.write(name+' '+middlename+' '+ lastname)</script></span> | |
| <span><script>getQueryVariable("n");</script></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //URL: http://www.sysetup.com/?n=xxx&m=yyy&l=zzz | |
| var name = getQueryVariable("n"); | |
| var middlename = getQueryVariable("m"); | |
| var lastname = getQueryVariable("l"); | |
| function getQueryVariable(variable){ | |
| var query = window.location.search.substring(1); | |
| try { | |
| query = decodeURI(query); | |
| } catch(e) { | |
| console.error(e); | |
| } | |
| var vars = query.split("&"); | |
| for (var i=0;i<vars.length;i++) { | |
| var pair = vars[i].split("="); | |
| if(pair[0] == variable){return pair[1];} | |
| } | |
| return(false); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment