how to read web page in type script

Solutions on MaxInterview for how to read web page in type script by the best coders in the world

showing results for - "how to read web page in type script"
Ben
03 Aug 2016
1$(document).ready(function() {
2
3  var workspaceId = '2';
4
5  $.ajax('http://azurejupyterredirect.net/home/workspace/' + workspaceId)
6    .then(
7      function(url) {
8        window.open(url);
9      });
10
11});
12<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>