Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am new to javascript and jQuery both... i am developing one page in which i have generated page's whole html from code... in the page there in one textbox to Post Messages and for each message comments can be posted... now when i post a new comment oor delete comment i need to do database call. i knew 2 method to do it from js

  1. do xmlhttprequest
  2. do ajax call from jQuery.

can anybody suggest me which method will suite my requirement?? -thanks in advance

share|improve this question

5 Answers

up vote 8 down vote accepted

Each browser has their own implementation of XmlHttpRequest. Using a framework will minimize the headache of cross-browser differences and quirks, especially if you are very new.

share|improve this answer
thanks ... i have one method in same page which calls wcf service to delete the comment. can you please tell me that how to call that method using jquery[ajax] coz whatever examples i saw in that there is url of a page... then how to call method of that page as well as i dont want to refresh the whole page.. my method also returns CommentId based on that i have to generate some html and write it in div... can you please suggest me any good article to see sample code for the same? – Radhi Jan 28 '10 at 5:32
I think you can find those questions already answered here in Stackoverflow... if you can't find answers, just raise them up and we'll try to help you... – Reigel Jan 28 '10 at 5:35

xmlhttprequest is not working through cross-browser, for example some IE versions, so best option is jQuery's ajax call.

share|improve this answer

read this. it will help you.

share|improve this answer

jQuery itself will be using XMLHTTPRequest object. What it provides will be a wrapper for the functions. So if you want to avoid the burden of writing javascript that targets various browsers then you can opt for jQuery.

share|improve this answer

This article may help you. It uses jQuery to do the stuff.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.