Just use $.get:

$.get('bohemia.php', { mydata: 123, ourdata: 456 }, function(data){
   $('#mydiv').html( data );
}, 'html');

http://docs.jquery.com/Ajax/jQuery.get

On Jan 28, 2:07 am, penjuin <jeremy....@gmail.com> wrote:
> I have written a small script that uses $.load() and I am trying to
> show a div through the callback. However, whenever I use more than one
> argument in the $.load() function, jQuery automatically assumes I am
> doing a POST request, causing my server to blow up. Anyone know how to
> force it into GET?

Reply via email to