$(function () {
$("#btnCallService").click(
function () {
CalWCF();
});
});
function CalWCF() {
var service = new IService1();
service.GetData($("#txtName").val(),
function (result) {
$("#dvMessage").html(result);
});
}

Iftikar HussainPosted Aug 3, 2013, 11:33 AM
You can call WCF service using Jquery AJAX like this
$("#dvMessage").html(result);
in your WCF service
Regards,
Iftikar