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() {
|
$(document).ready(function() {
|
||||||
$.each($(".dymanic_load"),function(){
|
$.each($(".dymanic_load"),function(){
|
||||||
if($(this).attr("path")=='' || $(this).attr("path")=='?'){
|
if($(this).attr("path")==''){
|
||||||
$(this).html("App setting Failed");
|
$(this).html("");
|
||||||
}else{
|
}else{
|
||||||
ajax_load_proc($(this),$(this).attr("path"));
|
ajax_load_proc($(this),$(this).attr("path"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue