How to get HTML from external contents with Jquery?
- by André
Hi,
I have successfully achieved the task of getting an internal webpage to show on my HTML, like I show bellow.
click here to see teste1.html
$('#target').click(function() {
$.get('teste1.html', function(data) {
$('#result').html(data);
alert('Load was performed.');
});
});
…