I'm asking the question above b/c in a different thread on 'stackoverflow' I've been able to prove that the jQuery code described above works. I'm just wondering if I'm doing something in my three column css layout that prevents me from seeing the html page displayed. Any insight?
Here's the css and jQuery. The html markup is a list item menu in the left column, trying to get the html page to load in the center column, and links for galleries in the right column (pretty straight forward). Remember, the jQuery works in a separate project that I have.
CODE:
<style media="screen" type="text/css">
body
{
margin: 0;
padding: 0;
border: 0; /* This removes the border around the viewport in old versions of IE */
width: 100%;
background: #fff;
min-width: 600px; /* Minimum width of layout - remove line if not required */ /* The min-width property does not work in old versions of Internet Explorer */
font-size: 90%;
}
h1, h2, h3
{
margin: .8em 0 .2em 0;
padding: 0;
clear: both;
font: italic bold 20pt "times new roman" , "sans-serif";
}
p
{
margin: .2em .2em .2em .2em;
padding: 0;
}
img
{
margin: 10px 0 5px;
}
/* 'widths' sub menu */#layoutdims
{
clear: both;
background: #eee;
border-top: 4px solid #000;
margin: 0;
padding: 6px 15px !important;
text-align: right;
}
#contactNamesPane
{
width: 20%;
float: left;
border-right: 3px solid #ccc;
}
#contactNamesPane ul
{
list-style-position: outside;
list-style-type: circle;
}
a:link, a:visited
{
margin: 0 0 0 1em;
display: block;
line-height: 1.4em;
font-family: sans-serif;
color: #999;
text-decoration: none;
border-bottom: 1px solid #ccc;
}
a:hover, a:active, a:focus
{
color: #f90;
text-decoration: underline;
}
/* Header styles */#header
{
clear: both;
float: left;
width: 100%;
}
#header
{
border-bottom: 1px solid #000;
}
#header p, #header h1
{
padding: .4em 15px 0 15px;
margin: 0;
text-align: center;
font: italic bold 36pt "arial" , "sans-serif";
color: Green;
}
/* column container */.colmask
{
position: relative; /* This fixes the IE7 overflow hidden bug */
clear: both;
float: left;
width: 100%; /* width of whole page */
overflow: hidden; /* This chops off any overhanging divs */
}
/* common column settings */.right, .colmid, .colleft
{
float: left;
width: 100%; /* width of page */
position: relative;
}
.contactDetailsPane, .contactNamesPane, .col3
{
float: left;
position: relative;
padding: 0 0 1em 0; /* no left and right padding on columns, we just make them narrower instead
only padding top and bottom is included here, make it whatever value you need */
overflow: hidden;
font: 16pt "times new roman" , "sans-serif";
}
/* 3 Column settings */.threecol
{
background: #eee; /* right column background colour */
}
.threecol .colmid
{
right: 25%; /* width of the right column */
background: #fff; /* center column background colour */
}
.threecol .colleft
{
right: 50%; /* width of the middle column */
background: #f4f4f4; /* left column background colour */
}
.threecol .contactDetailsPane
{
width: 46%; /* width of center column content (column width minus padding on either side) */
left: 102%; /* 100% plus left padding of center column */
margin: .2em .2em .2em .2em;
}
.threecol .contactNamesPane
{
width: 21%; /* Width of left column content (column width minus padding on either side) */
left: 31%; /* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3
{
width: 21%; /* Width of right column content (column width minus padding on either side) */
left: 85%; /* Please make note of the brackets here:
(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}
/* Footer styles */#footer
{
clear: both;
float: left;
width: 100%;
border-top: 1px solid #000;
}
#footer p
{
padding: 10px;
margin: 0;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" id="initialLoad">
$(function(){
$.get('listOfServices.htm', function(data) {
$('#contactDetailsPane').html(data);
});
});
</script>
<script type="text/javascript" id="jQueryCode">
$(document).ready(
function(){
$('a.names').click(
function(){
var thisId = $(this).attr('id');
$('#contactDetailsPane').fadeOut(400,
function(){
//$(this).load('tempPage.html #'+thisId+'Details');
$(this).load(thisId + '.htm');
var thisWidth = $(this).parents('dd').width();
}).fadeIn(600);
return false;
}
);
$('.close').live('click',function(){
$(this).parents('div').fadeOut();
});
}
);
</script>
HTML Code:
<body>
<div id="header">
<h1>
MACSimize Home Solutions</h1>
</div>
<div class="colmask threecol">
<div class="colmid">
<div class="colleft">
<div class="contactDetailsPane">
<!-- Center Column start -->
<!-- Center Column end -->
</div>
<div class="contactNamesPane">
<!-- Left Column start -->
<ul>
<li><a href="#" class="names" id="listOfServices">List of Services</a></li>
<li><a href="#" class="names" id="pricingStructure">Pricing Structure</a></li>
<li><a href="#" class="names" id="aboutMe">About Me</a></li>
</ul>
<!-- Left Column end -->
</div>
<div class="col3">
<!-- Right Column start, right side -->
<h3>
Galleries</h3>
<ul>
<li><a href="./gallery1/index.html">Gallery 1</a> | <a href="./gallery2/index.html">
Gallery 2</a></li>
<li>SimpleViewer requires JavaScript and the Flash Player. <a href="http://www.adobe.com/go/getflashplayer/">
Get Flash.</a></li>
</ul>
<!-- Right Column end -->
</div>
</div>
</div>
</div>
<div id="footer">
<p>
copyright of Solutions, Inc.</p>
</div>
</body>