I have a simple application in which I send an array of elements from my
index page to another jaggery script. Now I want to print those elements
from the jaggary script

My Index.jag contains
-------------------------------
$.get("addOrder.jag", {arr:itmArr,action: "add"},
function(data){
document.write(data);
});

--------------------------------

My addOrder.jag
---------------------------------
if(request.getParameter("action")== "add"){

//This is where I need to add the print statement.

}
-----------------------------------
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to