[ Prev ]
2021-05-05

-- May 5 In-Class Exercise
<!DOCTYPE html> <html> <head>
   <title> Sebrianne Ferguson in class cinco de mayo :D </title>
</head> <body>
   <script>
      function findTotalResults(obj) 
      {
         alert(obj.findTotalResults);
      }
   </script>
   <script src="https://www.yioop.com/s/news/?f=json&callback=findTotalResults" />
</body> </html>
<!DOCTYPE html> <html> <head> <title> Sebrianne Ferguson in class cinco de mayo :D </title> </head> <body> <script> function findTotalResults(obj) { alert(obj.findTotalResults); } </script> <script src="https://www.yioop.com/s/news/?f=json&callback=findTotalResults" /> </body> </html>
2021-05-08

-- May 5 In-Class Exercise
<!doctype HTML> <html lang='en-US'>
<head>
    <title>May 5 In-class Exercise</title>
</head>
<body>
    <script>
        function findTotalResults(results) {
            alert(results.totalResults);
        }
    </script>
    <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script>
</body>
</html>
<!doctype HTML> <html lang='en-US'> <head> <title>May 5 In-class Exercise</title> </head> <body> <script> function findTotalResults(results) { alert(results.totalResults); } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script> </body> </html>
2021-05-09

-- May 5 In-Class Exercise
<!DOCTYPE HTML>
 <html lang='en-US'>
 <head>
    <meta charset="utf-8"/>
    <title>May 5 In-Class Exercise (Atul Murali)</title>
 </head>
 <body>
 <script>
 
    function findTotalResults(object) {
      alert(object.totalResults);
    }
    
 </script>
 <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script>
 </body>
 </html> 
<!DOCTYPE HTML> <html lang='en-US'> <head> <meta charset="utf-8"/> <title>May 5 In-Class Exercise (Atul Murali)</title> </head> <body> <script> function findTotalResults(object) { alert(object.totalResults); } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script> </body> </html>

-- May 5 In-Class Exercise
<!DOCTYPE html> <head>
  <title>Lab Exercise 5/5/21</title>
</head> <body>
  <script>
    function findTotalResults(obj)
        {          alert(obj.totalResults);
        }
 </script>
 <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"></script>
</body> </html>
<!DOCTYPE html> <head> <title>Lab Exercise 5/5/21</title> </head> <body> <script> function findTotalResults(obj) { alert(obj.totalResults); } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"></script> </body> </html>

-- May 5 In-Class Exercise
<!DOCTYPE html> <body>
	<script>
	function findTotalResults(results)
	{
		alert(results.totalResults);
	}
	<script>
	<script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults" />
</body> </html>
<!DOCTYPE html> <body> <script> function findTotalResults(results) { alert(results.totalResults); } <script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults" /> </body> </html>

-- May 5 In-Class Exercise
<!DOCTYPE html>
<html>
    <head>
        <title>Xochitl, May 5</title>
    </head>
    <body>
        <script>
            function findTotalResults(number){
                alert(number.totalResults);
            }
        </script>
        <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"></script>
    </body>
</html>
<pre> <!DOCTYPE html> <html> <head> <title>Xochitl, May 5</title> </head> <body> <script> function findTotalResults(number){ alert(number.totalResults); } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"></script> </body> </html> </pre>
2021-05-12

-- May 5 In-Class Exercise
<!DOCTYPE HTML> <html>
 <head>
    <meta charset="utf-8"/>
    <title>Exercise 5 may</title>
 </head>
 <body>
 <script>
    function findTotalResults(r) {
      alert(r.totalResults);
    }
 </script>
 <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script>
 </body>
 </html>
 
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"/> <title>Exercise 5 may</title> </head> <body> <script> function findTotalResults(r) { alert(r.totalResults); } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script> </body> </html>
X