Bug Tracker

Changeset 5701

Show
Ignore:
Timestamp:
05/27/08 22:44:06 (8 months ago)
Author:
aflesler
Message:

jquery ajax: Closes #1516. load() can get a string of data (not only a hash) and it'll be a GET request.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/ajax.js

    r5687 r5701  
    2727 
    2828            // Otherwise, build a param string 
    29             } else { 
     29            } else if( typeof params == 'object' ) { 
    3030                params = jQuery.param( params ); 
    3131                type = "POST";