Hi there,

I am trying to submit a form as an ajax request

 <%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
 <html>
<head>
<s:head theme="ajax" debug="true"/>
   <script type="text/javascript">
 function submitForm() {
var kw = {
        url: "example.HelloWorld!execute.action",
handleAs:"text",
       load: function(response){
               dojo.byId('divResult').innerHTML = response;
        },
       error: function(data){
               console.debug("An error occurred: ", data);
       },
        timeout: 2000,
};
dojo.xhrGet(kw);
}
</script>
</head>
 <body>
<input type="button" onclick="submitForm()" value="Javascript" />
<s:div id="divResult"></s:div>
</body>
 </html>
 --
Tedy Marcos Colombini

Reply via email to