I am still trying to get a members' page going, where you click on a link to see that member's bio details show in a specific div further down the page. (I don't want to use frames to do this.) Below is the current version I've got, using suggestions from other threads, but nothing happens when I click the links. I'm still a newbie at this, and appreciate any help. I haven't created a fiddle so you can see the whole attribution - one error I noticed from an earlier version was a reference in my code to a version of jQuery older than the ones being used in the fiddles.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Can YOU get this to work?</title>
<script src="http://code.jquery.com/jquery-1.9.1.min.js">
$(document).ready(function()) {
$(".link").click(function(){
$(".hide").hide();
var dataType = $(this).attr('data-type');
$("#" + dataType).show();
});
});
</script>
<style type="text/css">
#profiles {background:#FFFFCC; border-style:solid; border-color:#ffd119; padding:15px; width:600px;text-align:left;position:absolute; top:450px;left:180px;}
.show {display:block; width:600px;}
.hide {display:none;}
.biopic {float:left; margin-right:15px; width:200px; height:200px; border-style:solid; border-color:#000099;clear:left;}
.biostext {display:inline; margin-left:15px; font-family:Georgia, serif; clear:right;}
#bioLinks {float:left; display:block; font-family:Georgia, serif; margin-left:25px; margin-top:15px;clear:right;}
.link {font-family:Georgia,serif; color:#0000ff; text-decoration:none;}
#Section {font-family:Georgia, serif;float:left; display:block; width:150px; margin-right:15px; margin-top:15px; text-align:right;}
</style>
</head>
<body>
<div id="Section">
Honcho<br>Grand Poo-Bah<br>Dogsbody
</div>
<div id="bioLinks">
<div><a href="#" data-type="bio1" class="link">Joe Bloggs</a></div>
<div><a href="#" data-type="bio2" class="link">Monica Faux</a></div>
<div><a href="#" data-type="bio3" class="link">John Doe</a></div>
</div>
<div id="profiles">
<div id="bio1" class="hide">
<div class="biopic"><img src="http://www.northshorebrass.org.nz/images/members_photos/JBloggs.jpg" width="200" height="200" alt="Joe Bloggs"></div>
<div class="biostext">Joe Bloggs is swell.</div>
</div>
<div id="bio2" class="hide">
<div class="biopic"><img src="http://www.northshorebrass.org.nz/images/members_photos/MFaux.jpg" width="200" height="200" alt="Monica Faux"></div>
<div class="biostext">Monica Faux is considering some changes in her life.</div>
</div>
<div id="bio3" class="hide">
<div class="biopic"><img src="http://www.northshorebrass.org.nz/images/members_photos/JDoe.jpg" width="200" height="200" alt="John Doe"></div>
<div class="biostext">John Doe is an unknown.</div>
</div>
</div>
</body>
</html>