[jQuery] Re: help with ajax post

2008-09-12 Thread nananannae2
    , amount : $("#amount").val() >       , dtnow : $("#time").val() >       , Gateway_MerchantConfigID : $("#Gateway_MerchantConfigID").val() >     } >    , async: false >    , success : function (response) { >      $("#hash").val(response); >    } > > }); >

[jQuery] help with ajax post

2008-09-05 Thread nananannae2
can someone help me get this to work please? i need a post to a page that returns a string to set but it's my first time using it $("#hash").val( $.ajax({type: "POST" ,url: "GetNewHash.aspx" ,data:"orderid="+ $("#orderid").val()+"&amount="+ $ ("#amou

[jQuery] need help with $.post with callback function in submit button

2008-09-05 Thread nananannae2
Is there any difference between $.post with callback function in a submit button vs a regular input button? When my submit button tries to post and get the callback result it never happens. Thanks!