Jump to content

saha19

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by saha19

  1. You already have it in xmlhttp.responseText

     

    If you want to use it in further scripted processing then just move it to a variable and proceed from there.

    globalVariableName = xmlhttp.responseText;

     

    someOtherFunction();

     

    function someOtherFunction()
    {
    alert(globalVariableName);
    }

     

     

    is it like that ,if its then it not working so can u tell me what is the write syntax

×
×
  • Create New...