freeze « page « jQuery Q&A

Home
jQuery Q&A
1.addClass
2.alert
3.array
4.attribute
5.browser
6.callback
7.clone
8.Cookie
9.Date
10.Development
11.document
12.dom
13.element
14.filter
15.Firefox
16.flash
17.format
18.html
19.input
20.internet explorer
21.json
22.mootools
23.page
24.performance
25.regex
26.safari
27.selector
28.setTimeout
29.String
30.table
31.Text
32.trigger
33.URL
34.video
35.xml
jQuery Q&A » page » freeze 

1. How to make jQuery load() not freeze the page?    stackoverflow.com

When using jquery's load function, the page freezes until it has loaded. How can I get around that? I have a script that makes all links load through ajax, into a div in ...

2. jquery load freezing the page    stackoverflow.com

$(document).ready(function(){
$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");

$("a[target!='_blank'][target!='_top']").click(function(){


$("#actualcontent").load($(this).attr("href"));
$("#nav").load('nav.php');

window.location.hash=$(this).attr("href");
        return false;
    });
});
This code works fine, but when you click links, the pages load but they freeze the page until ...

3. How can I call ajax synchronously without my web page freezing    stackoverflow.com

I have some javascript that fires off about 100 calls to a php script. the php script uses up a lot of memory and takes a few seconds to complete, then ...

4. jquery.pngFix.js is making page frozen    stackoverflow.com

I am using jquery.pngFix.js to fix IE6 transparency for png. I am pulling it at the header the following way and then calling the function in separate .js file:

<!--[if IE 6]>
<script ...

5. JQuery Load freezing page links    stackoverflow.com

On my homepage I am showing the feed from news website in one of my div using below code:

<div id="divResult">

     <script language="javascript" type="text/javascript">
     ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.