I want to get the html content of another page, so I use the following jquery.get () function
$.get("chk_vga.aspx", function(data) {
alert($('#vga').html());
});
on the page "chk_vga.aspx", it has only one value
<html>
<body>
<div id="vga">F</div>
</body>
</html>
how will my jquery function get the value "F"?
source
share