I have the following code in my servlet class:
request.setAttribute("myValueName", myValue); //Note: myValue is a TreeMap
I want to access this attribute via jQuery. Does anyone know how to do this?
var myNewVariable = ???;
Note that this attribute is NOT in the URL of the page.