dear all,
is it possible POST variable like this?
- function showdata(div_id, myURL, myvariable){
- $.ajax({
- type:'POST',
- url:myURL,
- data:myvariable,
- success:function(respons){
- $('#'+div_id).html(respons);
- }
- });
- }
Please give me solution about it..
thanks,