![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Confirmed User
Join Date: Oct 2003
Location: Atlanta
Posts: 2,840
|
div show/hide code...
I'm trying to do a div show/hide where I have 3-4 links and when I click on either the div or li attached to that link populates a Main div box. (i.e. main box is showing page chapters). I tried this with the tradition Tab show hide method but since my text links are off centered to the right wrapped around a gfx I need something where the links can be anywhere and not nested with a div like the tab method does.
any idea? |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
Confirmed User
Industry Role:
Join Date: Mar 2004
Location: Rock Hill, SC
Posts: 5,370
|
I am not following what you want exactly, however, this is easily accomplished with jQuery. You can either use the toggle() method or add and subtract css classes with the click() method. The best way would be to add a classname to each of the links like this:
Code:
<div id="main"></div> <a href="page1.html" class="pager">Page One</a> <a href="page2.html" class="pager">Page Two</a> <script> jQuery(document).ready(function() { jQuery(".pager").click(function() { jQuery("#main").load(jQuery(this).attr('href')); }); }); </script> |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 | |
Confirmed User
Join Date: Oct 2003
Location: Atlanta
Posts: 2,840
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |