Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Getting a Qlikview document full HTML using javascript

I want to write a javascript program that gets a url of a specific Qlikview document and returns its full HTML. When I tried to get through a regular get request, I got the page's template but not the concrete HTML with the Qlikview elements that are seen when opened in browser.

$.ajax({

     url: 'address',

     success: function getHTML(data) {

          var html = $.parseHTML(data, document, true);

          $('#tabHTML').append(html);

     }

});

Thanks

0 Replies