Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Last active January 21, 2021 08:07
Show Gist options
  • Save zlatkov/c73caf041111f6babdef9d997e19b4c4 to your computer and use it in GitHub Desktop.
Save zlatkov/c73caf041111f6babdef9d997e19b4c4 to your computer and use it in GitHub Desktop.
<html>
<head>
<title> Dashboard </title>
</head>
<body>
<script>
let startPosition = document.URL.indexOf("role=") + 5;
let userRole = document.URL.substring(startPosition,document.URL.length);
document.write(userRole);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment