Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
FLASH SALE: Save $500! Use code FLASH2026 at checkout until Feb 14th at 11:59PM ET. Register Now!
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

Labels (1)
0 Replies