JS: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
m (Protected "JS" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))
mNo edit summary
 
Line 12: Line 12:
});
});
</nowiki>
</nowiki>
[[Category:Main]]

Latest revision as of 14:05, 29 May 2023

/* TOGGLE HIGHLIGHT ON ORDERED LISTS WHEN CLICKED */ $(":not(.references li) ol li").click(function (e) { e.stopPropagation(); if(!($(this).hasClass("highlighted"))) { $(this).addClass("highlighted"); $(this).find("li").addClass("highlighted"); } else { $(this).removeClass("highlighted"); $(this).find("li").removeClass("highlighted"); } });