Please enter your email address to receive our latest news, offers and bike tour information.
We usually add a bit of history too!
/* Attempt to select a Tour based on querystring value */
// Check if Ninja Forms is ready
var formExists = setInterval(function() {
if ( jQuery('.nf-form-cont').length ) {
// Change Select
var urlParam = getParameterByName('tour');
console.info('urlParam', urlParam);
if(urlParam != ''){
jQuery('#nf-field-161 option[value*="' + urlParam + '"]').prop('selected',true).trigger('change');
}
clearInterval(formExists);
}
}, 100); // check every 100ms