All pastes #2055806 Raw Edit

Untitled

public text v1 · immutable
#2055806 ·published 2011-05-09 16:16 UTC
rendered paste body
    var test = document.createElement("p");
    test.setAttribute("id","testing");
    document.getElementById("body_main").appendChild(test);

    new Ajax.Request("test.php",
                     {
                         onSuccess: function(response)
                         {
                          document.getElementById("testing").setAttribute("value","testing...");
                         },
                         onFailure: function(response)
                         {
                             alert("fail");
                         }
                     });

        alert(document.getElementById("testing").getAttribute("value"));