On 15:47:43 Nov 19, lakshmi m wrote: > i run ajax program but not working ,so see javaconsole display error > (xmlhttp object is not found) > how rectify this error.
If you use jQuery, http://jquery.com Ajax is a piece of cake. Actually it tastes like the famous Black Forest cake. Nice, soft and tasty. ;) Anyway you have to include jquery like this. <script src="jquery-latest.js" type="text/javascript"></script> <script> $(function() { $('div').load("<ajax url"); }); As you can see, jQuery is very simple since it does all the Ajax work of XMLHTTPRequest and what not behind the scenes. There are also advanced Ajax functions in jQuery but I have been able to do a lot with the simple $(<selector>).load() call. Hope this helps. Best of luck! -Girish _______________________________________________ To unsubscribe, email [EMAIL PROTECTED] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
