How to get innerHTML of an element from another web page using JavaScript?
Example:
<script>
$.get(url, function(response) {
var $response = $(response); // Code not working from this line
alert($response.find('.result').html()); // get innhtml of element by class name from response
});
</script>