Ok, I think I am getting somewhere.
Here is the the actual link to what I am doing:
http://pervasivemarketing.com/wesco/www/calculators
The process:
The main area gets pulled in via $ajax:
$("a", '#Menu').not('.skip').click(function(){
$.ajax({
url: $(this).attr('href'),
dataType : 'html',
success : function(){
$('#calccontent').empty().append(arguments[0]);
},
complete : function(){}
});
return false;
});
which works in all browsers, but if you click on the link "Flat Panel" it
will load the main page in question.
Firefox works great, IE does not do what it is supposed to and I am starting
to question if it is recognizing the elements, I say that because I have:
<style media="screen">
.calctable{border:1px solid #63351d; background:#d0883e;}
.calctable input{border:1px solid #925a29; background:#f6e8c5; width:37px;}
.calctable input.but{width:102px; height:31px;}
.calchide{display:none;}
</style>
on the page and those elements are not being styled and when I add the
onclick="showCalc();" to the "with lining" link, it will not give me the
title
code:
showCalc = function(){
alert('hit ' + $(this).attr('title') + 'dd');
var div = $(this).attr('title');
$('.calchide').hide();
$('#'+div).show();
}
So...... My I need to get some coffee..... and a gun...... Microsoft, here
I come....
Any help would be appreciated.
--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/