Skip to content

Instantly share code, notes, and snippets.

@infoscigeek
Created September 14, 2017 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infoscigeek/b8c810a52d2bd948a80257dc807217be to your computer and use it in GitHub Desktop.
Save infoscigeek/b8c810a52d2bd948a80257dc807217be to your computer and use it in GitHub Desktop.
$(document).ready(function()
{
var option = 'coke';
var url = window.location.href;
option = url.match(/option=(.*)/)[1];
showDiv(option);
});
function showDiv(option)
{
$('.boxes').hide();
$('#' + option).show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment