Hi,
I'm currently developing my new portfolio. I chose Drupal because it's just awesome. Maybe a little too big, but very easy to control once you get to know it. Now, I wanted to use AJAX loading methods to load my portfolio projects into one div element inside the frontpage whenever you click a link. Basically, I used this example, I just added a loadinganimation to it which is not the root of this problem as I disabled it with no effect.
The script loads a page inside a container element. A page which I've customized the template in. I removed the menu, header, footer etc. It just leaves the content, which has the title, a preview-picture and some textfields for year, description, link etc. Now, after you've loaded a few pages with links my browsers freezes completely (Yes, tested with Chrome, Firefox and Opera). I've tried adding the next part to the Javascript file with no effect :
jQuery(document).ready(function () {
jQuery.ajaxSetup({ cache: false });
}Also tried jQuery.ajax but didn't work either, not sure which one is supposed to work. I already posted something on the original site for help but I wanted to try here too if it's faster. Has anyone had a similar problem, is this a caching issue or what?