Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T07:18:06Zhttp://stackoverflow.com/feeds/question/992247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix0Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fixoli2009-06-14T05:34:50Z2009-08-02T09:00:03Z
<p>Can someone tell me why this:</p>
<p><a href="http://dageniusmarketer.com/DigitalWonderland/pages/Portfolio.html" rel="nofollow">http://dageniusmarketer.com/DigitalWonderland/pages/Portfolio.html</a></p>
<p>works fine on its own page all by iself, but when I try to load it inside my current site using ajax and jquery, which is, </p>
<p>dageniusmarketer.com/DigitalWonderland/</p>
<p>On the portfolio page, i get this error:</p>
<pre><code>this.loader = new GalleryLoader('gallery.xml', 'gallery', "Madeira"); this.prefetching = 'all';
</code></pre>
<p>instead of loading my gallery the way i want? Id really like to know how to fix it as its been bugging me for a few days now.</p>
<p>Any and all help is appreciated,</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix/992259#9922590Answer by oli for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fixoli2009-06-14T05:38:46Z2009-06-14T05:38:46Z<p>And one more thing, how do i get my main content div height to expand to exactly the height of my content? im currently using a global % value, and its either too short for one page or too long for another. I need a remedy for this. You can view my source to see what im doing for the height to see the problem.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix/992263#9922630Answer by oli for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fixoli2009-06-14T05:45:24Z2009-06-14T05:45:24Z<p>And one last thing, how do i load the home page content into the content div as soon as the site loads instead of having to press the home button before you see anything?</p>
http://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix/992266#9922660Answer by merkuro for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fixmerkuro2009-06-14T05:49:39Z2009-06-14T05:49:39Z<p>I get the same error with JavaScript deactivated. Just make sure you activate your JavaScript. For those users - for whatever reason - have disabled their JavaScript I would suggest to supply something different than just this warning. Give them a hint or just a nice alternative without JavaScript. Just another thing, please embed your JavaScript within an appropriate tag: </p>
<pre><code><script type="text/javascript">
this.loader = new GalleryLoader('gallery.xml', 'gallery', "Madeira");
this.prefetching = 'all';
</script>
</code></pre>
http://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix/992317#9923170Answer by Jonathan Maddison for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fixJonathan Maddison2009-06-14T06:51:23Z2009-06-14T06:51:23Z<p>One issue seems to be that you are loading a whole HTML page within a div. If your AJAX call was working properly, you'd end up with code like:</p>
<pre><code><html>
<head>...</head>
<body>
<div>
<html>
<head>...</head>
<body>
...
</body>
</html>
</div>
</body>
</html>
</code></pre>
<p>If you really want something like that, you'd be better off using an iframe.</p>