What is the easiest way to disable an entire HTML page until an initial .load call is complete? What I mean by disable is the user can not interact with it in any way. It is ok for them to navigate away.
我正在使用j Query 1.2.6。 难道要把这一呼吁当作yn而不是像吗? 您如何在载荷功能上提出这方面的选择?
UPDATE
this seems to be working - am I off base?
function doSomething() {
$.ajaxSetup({ async: false });
$( #someArea ).load( ... args ... );
$.ajaxSetup({ async: true });
}