Skip to main content

Posts

Showing posts with the label Ajax

Ajax with jsp : simple example

HTML Page < html >      < head > < title > welcome </ title >      < script   language = "javascript" >         reqObj=null;         function  varify (){             document. getElementById ("res").innerHTML=" Checking ";              if (window.XMLHttpRequest){                 reqObj=new  XMLHttpRequest ();             }else {                 reqObj=new  ActiveXObject ("Microsoft.XMLHTTP");             } ...