Redirect Blank Menu Pages
How to redirect blank pages as a result of selecting a navigation menu item
Last updated
Was this helpful?
How to redirect blank pages as a result of selecting a navigation menu item
Last updated
Was this helpful?
Was this helpful?
/**************************************/
/*** Redirect from Blank Menu Pages ***/
/**************************************/
//Menu Page
$(document).on('knack-scene-render.scene_28', function(event, scene) {
window.location.href = "https://atd.knack.com/development-services#development-reviews/";
});/**************************************/
/*** Redirect from Blank Menu Pages ***/
/**************************************/
//Menu Page
$(document).on('knack-scene-render.scene_28', function(event, scene) {
window.location.replace("https://atd.knack.com/development-services#development-reviews/");
});/***********************************/
/*** Redirect from Root URL Page ***/
/***********************************/
$(function() { // Execute on page load
if (window.location.hash === '') {
window.location.href = "https://atd.knack.com/development-services#customer-portal";
}
$(window).on('hashchange', function() {
if (window.location.hash === '') {
window.location.href = "https://atd.knack.com/development-services#customer-portal";
}
});
});'knack-scene-render.scene_28'window.location.href = "https://atd.knack.com/development-services#development-reviews/"