Fixed Reloading problem and generate div only if path argument present
This commit is contained in:
parent
a3d921c47a
commit
a49562e341
|
@ -3,8 +3,8 @@ var banner_index = 0;
|
|||
|
||||
$(document).ready(function() {
|
||||
$.each($(".dymanic_load"),function(){
|
||||
if($(this).attr("path")=='' || $(this).attr("path")=='?'){
|
||||
$(this).html("App setting Failed");
|
||||
if($(this).attr("path")==''){
|
||||
$(this).html("");
|
||||
}else{
|
||||
ajax_load_proc($(this),$(this).attr("path"));
|
||||
}
|
||||
|
|
Reference in New Issue