function GetHTML(url, para) {
var data = $.ajax({
url: url,
global: false,
type: "POST",
data: para,
dataType: "html",
async: false,
}).responseText;
return data;
}
well when i run this function it's work good but i got the problem that Visual studio tell me Expected identifier or string
are their anything goes wrong in this code. well tell me what i do to remove this error