Click 9th List Item
HTML
<ol id="nav-categories">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li id="test"></li>
<li></li>
</ol>
JavaScript
$( document ).ready(function() {
//setup click event
$( "#test" ).on( "click", function() {
$( this ).html("clicked");
});
//click item if url contains _display
if(window.location.href.indexOf("_display") !== -1) {
setTimeout(function() {
$("#nav-categories li:nth-child(9)").trigger("click");
},1000);
}
});