Athalos, On Sun, Nov 9, 2008 at 3:53 AM, Althalos <[EMAIL PROTECTED]> wrote:
> > Nope. Can't make that work either. I now have: > $(document).ready(function(){ > $("a").fadeTo(500,0.33); > $("a").hover(function(){ > $(this).fadeTo(500,1); > }, function() { > $(this).fadeTo(300,0.33); > }); > $("#content").fadeTo(10,0.5); > $("a").click (function(event) { > event.preventDefault(); > $("#content").slideUp('slow', function () { > $.post('http://uf.ekdahlproduction.com/itsvintage/text.php', > {site: $(this).attr('rel')}, function(data) { > $("#content").html(data); > $("#content").slideDown('slow'); > }); > }); > }); > }); > > And it's not actually cross-domain, it's just the way I wrote it for > some reason ^^ > I think the reason the DIV is empty is because the url http://uf.ekdahlproduction.com/itsvintage/text.php is returning a blank document. When I hit the url, it just returns a blank page. -Dan