$.ajax({
type:”GET”,
data:”userName=myData”,
url:”Destination.aspx”,
dataType:”html”,
success:function(msg){
$(‘show’).html(msg);
}
});