Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:18:06Z http://stackoverflow.com/feeds/question/992247 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix 0 Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix oli 2009-06-14T05:34:50Z 2009-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#992259 0 Answer by oli for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix oli 2009-06-14T05:38:46Z 2009-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#992263 0 Answer by oli for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix oli 2009-06-14T05:45:24Z 2009-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#992266 0 Answer by merkuro for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix merkuro 2009-06-14T05:49:39Z 2009-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>&lt;script type="text/javascript"&gt; this.loader = new GalleryLoader('gallery.xml', 'gallery', "Madeira"); this.prefetching = 'all'; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/992247/why-portfolio-gallery-isnt-loading-into-ajax-jquery-window-need-fix/992317#992317 0 Answer by Jonathan Maddison for Why Portfolio Gallery isnt loading into Ajax/JQuery window- Need fix Jonathan Maddison 2009-06-14T06:51:23Z 2009-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>&lt;html&gt; &lt;head&gt;...&lt;/head&gt; &lt;body&gt; &lt;div&gt; &lt;html&gt; &lt;head&gt;...&lt;/head&gt; &lt;body&gt; ... &lt;/body&gt; &lt;/html&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>If you really want something like that, you'd be better off using an iframe.</p>