Menu does not display in line. Not sure how to call the CSS code. Also I want the alert to tell me which menu item was clicked.
<script type="text/javascript">
function get_list() {
$("#tabs").click(function(){
$(this).click(function(){
alert(this);
});
});
</script>
<style type="text/css">
#navbarID li {
display: inline;
}
</style>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="type1.html">Type 1</a></li>
<li><a href="type2.html">Type 2</a></li>
<li><a href="type3.html">Type 3</a></li>
</ul>
</div>
</body>
</html>