You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
424 B
9 lines
424 B
/* Copyright (C) 1998-2019 by Northwoods Software Corporation. All Rights Reserved. */
|
|
var hash = null;
|
|
function changeHash() {
|
|
if (hash !== null) $("[name='" + hash + "']").parent().css('background', '');
|
|
hash = window.location.hash.slice(1);
|
|
$("[name='" + hash + "']").parent().css('background-color', 'rgba(230, 242, 255, .4)'); // light blue
|
|
}
|
|
$(document).ready(changeHash);
|
|
$(window).on('hashchange', changeHash); |