Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<script src="https://unpkg.com/@reactivex/rxjs@5.0.0-beta.7/dist/global/Rx.umd.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
    <div id="main">
          <input id="zip" placeholder="Enter a zip code" />
          <button id="btn">Get the weather</button>
      </div>
  <div id="result"></div>
</body>
</html>
 
       Rx.Observable.fromEvent(document.getElementById('btn'),'click')
         .map((val) =>$('#zip').val())
         .concatMap((zc) => {
         return $.get(`http://api.openweathermap.org/data/2.5/weather?zip=${zc},us&APPID=9cea49b4aa17973c2f67a303daba93ab`)
         }) 
         .subscribe((zipCode) => {
         $('#result').text(zipCode)
         console.log(zipCode);
       });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers