Results 1 to 3 of 3

Thread: learning AJAX,

  1. #1
    AllenBrown is offline Senior Member
    Join Date
    Dec 2009
    Posts
    240
    Rep Power
    3

    Default learning AJAX,

    I am new in programming word and I am learning AJAX, I would like to know the details from which I can able to Send various Requests at the Same Time. If anybody is having solution or script to get it, then please give me that. It will be helpful to me.

  2. #2
    ScottWright is offline Senior Member
    Join Date
    Dec 2009
    Posts
    243
    Rep Power
    3

    Default

    I think you have a preference of the Switch to synchronous. This option, blocks any treatment as the previous Ajax request is not returned. But it is a solution of last resort, for example:

    $.ajax(
    {
    async: false,
    url: 'ajax / test.html',
    success: function(data)
    {
    alert('Start')
    }
    });

  3. #3
    BakerJones is offline Senior Member
    Join Date
    Dec 2009
    Posts
    244
    Rep Power
    3

    Default

    2) If you would like to send Multiple Requests at the same time then you can use three methods as follow:

    1. First solution can be the use of the synchronous AJAX requests. If you use synchronous then one connection from the one client will be formed.

    2. You can do the schedule which will help you to make a second connection when one connection closes.

    3. Third and last option can be as you can collect the entire request.

Similar Threads

  1. learning C programming language
    By HernandezOrtiz in forum Programming
    Replies: 1
    Last Post: 02-19-2010, 01:27 PM
  2. Learning VB Scripts in Excel
    By MartinWilson in forum Programming
    Replies: 0
    Last Post: 01-11-2010, 02:30 PM
  3. Learning SQL Stored Procedures
    By Davisricky in forum Programming
    Replies: 0
    Last Post: 01-11-2010, 01:42 PM
  4. Electronic Learning
    By CALANTHA in forum General Internet Terms
    Replies: 0
    Last Post: 11-28-2008, 06:33 AM
  5. Learning more about the Mouse
    By jack879 in forum CPU & Components
    Replies: 0
    Last Post: 11-18-2008, 06:00 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48