Load External Html File To Div Using Jquery
I am using a html page which has many tooltips. each tooltip has a gallery, since it is not possible to use multiple gallery which has same id, I am planning to create 6 different
Solution 1:
$.get('test.html')
.success(function(data) {
$('div.content').html(data);
});
EDIT
If you need it for that specific div, replace 'div.content' with '#flrmain'.
Post a Comment for "Load External Html File To Div Using Jquery"