I'm a newbie to jquery, so no flames please...I have a basic 3 column
web
page - nav, center and left. That works great. My left column is
navigation. When I click on a link on the left nav pane, I want a
basic
table to appear in the center and right panes - not even getting
anything
from a database, just displaying a schedule table. It seems pretty
easy but
I must be doing something wrong. Here is my jquery js:
$(document).ready(function() {
$('#btn-slide').click(function() {
$("#col1").show('slow');
return false;
})
})
Here is my nav stuff:
....
<ul class = categoryitems">
<li> # id="btn-slide">Schedule </li>
.... Later in the code is the middle column that I want replaced with
the
new material when the user clicks on a nav link:
<div class="col1" id="col1">
blah, blah...
</div>
What am I doing wrong?