Current location: Hot Scripts Forums » General Web Coding » JavaScript » Ajax and jQUERY


Ajax and jQUERY

Reply
  #1 (permalink)  
Old 06-25-08, 12:33 AM
cancer10 cancer10 is offline
Wannabe Coder
 
Join Date: Oct 2006
Location: India
Posts: 154
Thanks: 0
Thanked 0 Times in 0 Posts
Question Ajax and jQUERY

Hi,

I am trying to learn ajax with jquery.

The following code is a simple ajax script that sends the values for 3 fields to another page search.php.

Code:
 <script type="text/javascript">
    var http = false;

    if(navigator.appName == "Microsoft Internet Explorer") {
      http = new ActiveXObject("Microsoft.XMLHTTP");
    } else {


      http = new XMLHttpRequest();
    }
	var strkeyword= document.forms['myform'].txtKeyword.value;
	var strdomain= document.forms['myform'].txtDomain.value;
	var strengine = document.forms['myform'].txtEngine.value;

      http.abort();
      http.open("GET", "search.php?keyword="+ strkeyword +"&domain=" + strdomain + "&engine=" + strengine, true);
      http.onreadystatechange=function() {
  </script>


Now question: Can this script be written in jQUERY? if yes how?

I search on the jquery site but could not find anything that can help me.


Thanx
Reply With Quote
  #2 (permalink)  
Old 06-25-08, 12:56 AM
<?Wille?> <?Wille?> is offline
Junior Code Guru
 
Join Date: Jan 2004
Location: Helsinki, Finland
Posts: 666
Thanks: 0
Thanked 0 Times in 0 Posts
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
AJAX form help, where to start? 88mph JavaScript 5 05-02-08 04:47 AM
jQuery AJAX Question zicmu- JavaScript 4 09-26-07 05:57 AM


All times are GMT -5. The time now is 11:39 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.