
Join our mailing list
To keep up to date on our events or any local events that we are dancing at. We hope to see you soon!
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = window.location.search.substring(1),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
}
}
};
$(document).ready(function(){
var data = getUrlParameter('id');
if (data != undefined) {
$('.SIGNUP').val(data);
}
else {
console.log($('.SIGNUP').val());
if($('.SIGNUP').val() == "") {
$('.SIGNUP').val('undefined');
}
}
});
.site-header {display: block !important;}