Filter New Content To Only Display Specific Divs
to load more content inside my page, I'm retrieving an external page link with the jQuery.get() function. I can retrieve all the page, however, when I'm trying to filter the result
Solution 1:
you might use the load function of jquery:
$('#result').load('ajax/test.html #container');
whereas #container
is the selector for the content being fetched
(see jquery load documentation)
Post a Comment for "Filter New Content To Only Display Specific Divs"