Answers for "how to read web page in type script"

0

how to read web page in type script

$(document).ready(function() {

  var workspaceId = '2';

  $.ajax('http://azurejupyterredirect.net/home/workspace/' + workspaceId)
    .then(
      function(url) {
        window.open(url);
      });

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Posted by: Guest on April-23-2021

Code answers related to "how to read web page in type script"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language