Skip to content

Instantly share code, notes, and snippets.

@hkdeven
Created March 3, 2018 15:44
Show Gist options
  • Save hkdeven/db896b15d82306668cf91c2bd12fe9c1 to your computer and use it in GitHub Desktop.
Save hkdeven/db896b15d82306668cf91c2bd12fe9c1 to your computer and use it in GitHub Desktop.
// Parse URL string
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split("-");
if (pair[0] == variable) {
return pair[1];
}
}
}
// Assign values from URL string to variables
function togglePriceView() {
// Get variable value from URL string
var value = getQueryVariable("get");
// If url is NOT /?get-quote/, hide price and checkout button from view
if (value != "quote") {
document.getElementById('priceSection').style.display ='none'; //hides price, itemized list
document.getElementsByClassName('get-this-building')[0].style.display = 'none'; //hides checkout button
document.getElementById('saveMyBuilding').style.float = 'right'; //re-adjusts nav menu to compensate for pricing void
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment