Forum Discussion
TimCrannigan
Jan 09, 2023Copper Contributor
Sharepoint online navigation caching?
I am using Aplication Customizer to add jQuery and custom javascript to my page: let current_date: Date = new Date(); let date_String: string = current_date.toString(); date_String = current_date....
TimCrannigan
Jan 10, 2023Copper Contributor
Seems to be a routing interceptor that will check your link and if appropriate, do a partial navigation, ie avoiding a full page load.
To work around and force javascript to run, add
data-interception="off"
to all links eg by script
$('a').attr("data-interception", "off");
To work around and force javascript to run, add
data-interception="off"
to all links eg by script
$('a').attr("data-interception", "off");
Marcelo Henrique Fernandes Ribeiro
Aug 13, 2023Copper Contributor
Thank you so much!