Hi,
ich mache in einer funktion eine Abfrage, die mir werte zurück gibt.
Die Variable aus der function müsste ich jetzt wo anders einsetzen (nicht in der funktion).
Gibt es da eine möglichkeit??
Hier das script:
function getTasks()
{
HTML_AJAX.call('projectajax','gettasks',tasks,task_id );
//TASK_ID IST DIE VARIABLE DIE VERFÜGBAR GEMACHT WERDEN SOLL
}
//Variablen definieren
//Generieren des HTML Code
function projekte(result_projects)
{
document.write("<table id='table'>");
for (a in result_projects)
{
var task_id=result_projects[a]["id"]; //DIESE VARIABLE AUSERHALB FUNKTION VERFÜGBAR MACHEN
document.write("<tr>");
document.write("<td>");
document.write(result_projects[a]["name"]);
document.write("</td>");
document.write("<td>");
document.write(result_projects[a]["total_time"]);
document.write("</td><td>");
document.write(result_projects[a]["id"]);
document.write("</td>");
document.write("</tr>");
}
document.write("</table>");
}