Guest User

Untitled

a guest
Jun 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $('.list-group-item').on('click', function(e) {
  2. e.preventDefault();
  3. var url = $(this).attr('href');
  4.  
  5. getCMS(url);
  6. })
  7.  
  8. function getCMS(href) {
  9.  
  10. $.ajax({
  11. url: href +'?content_only=1'
  12. })
  13. .done(function(data) {
  14. var doc = $.parseHTML(data);
  15. doc = $(doc).filter('.cms');
  16. console.log('Pobieram dane z:' +href);
  17. console.log(doc);
  18. });
  19. }
Add Comment
Please, Sign In to add comment