Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

See: Delft-FEWS PI Rest Service Open API Documentation (rapidoc) or Delft-FEWS PI Rest Service Open API Documentation (swagger) for the API Documentation.

...

HTML
<iframe id="result" style="width: 100%; height: 100vh;border:none;" scrolling="no"></iframe>
<script>
$(document).ready(function() {
	$.ajax({
		method: 'GET',
		url: 'https://publicwiki.deltares.nl/download/attachments/194806703/databaseConnectionCountCalculator.html?api=v2',
		dataType: 'text',
		success: function(data) {
			var iframe = document.getElementById('result');
			iframe = iframe.contentWindow || ( iframe.contentDocument.document || iframe.contentDocument);
			iframe.document.open();
			iframe.document.write(data);
			iframe.document.close();
 		}
	});
});
</script>