load/get/post syntax

load/get/post syntax

is it possible to take this
post("someurl",somefunction());

and write it in a longhand way, like you would for a ajax or a long animate command,  like this

post({
url:someurl,
success:somefunction()
});

if yes

can someone provide me an example so i can see the exact correct syntax