Skip to main content

Bug Tracker

Side navigation

#866 closed bug (duplicate)

Opened January 23, 2007 07:49AM UTC

Closed January 23, 2007 10:37AM UTC

Last modified June 19, 2007 09:40AM UTC

multiple ajax only update one div

Reported by: anonymous Owned by:
Priority: major Milestone: 1.1
Component: ajax Version:
Keywords: Cc:
Blocked by: Blocking:
Description

when trying to load multiple ajax only the last div is updated, when you switch the script in ready part the last one (the div) will always be updated but it will succeed calling both ajax.

function getNews(id){

action = id.substring(0,4);

id = id.substring(4);

$.getJSON("/labs/json.php?action=" + action + "&id=" + id,function(json){

$("#" + action + "NewsOverview").html(json.value.news);

});

}

$(document).ready(function(){

getNews($("#panelHottNews .gamesNewsSelected").attr("id"));

getNews($("#panelGameNews .gamesNewsSelected").attr("id"));

}

Attachments (0)
Change History (1)

Changed January 23, 2007 10:37AM UTC by joern comment:1

resolution: → duplicate
status: newclosed

See #867