.css li id z 1000 ( ), :
$('#listitem2').css({'z-index':'1000'});
listitem2 .
PS: :
CSS:
li#impromptuVerticalNav {
position: relative;
z-index: 1000;
}
,
<a href="#" onClick="$.prompt(tourStates);">Take Tour</a>
to
<a id="take-tour" href="#">Take Tour</a>
<head> </head> html.
$(document).ready(function () {
$('#take-tour').click(function() {
$('#impromptuVerticalNav').css({'position':'relative', 'z-index':'1000'});
$.prompt(tourStates);
});
});