2011-10-21 06:11:41 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
$.each($(".dymanic_load"),function(){
|
|
|
|
$(this).load($(this).attr("path"),
|
|
|
|
function(respText,textSta,XML){
|
|
|
|
if(textSta == 'error')
|
|
|
|
{$(this).html("Loading Failed");}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
2011-11-19 17:26:24 +00:00
|
|
|
$("#main_content").addClass("module");
|
2011-10-21 06:11:41 +00:00
|
|
|
});
|