HI there
I have a dynamic UL that lists a series of titles
I want to slide some content under each title when a user clicks and close any other title contents previous shown.
How do i do this please using jQuery..
My php to create the UL is here::
Code:
while ($row=$blog->fetchassoc()) {
echo '<li class="title"><a href="">'.$row['title'] ."</a></li>";
}
|