[ Prev ]
2022-11-18

-- Nov 16 In-Class Exercise Thread
 <!DOCTYPE html>
 <html lang="en-US">
    <head>
        <title>11/16 In-class exercise</title>
        <meta charset="utf-8" />
    </head>
    <body>
        <script>
            const findTotalResults = (obj) => {
                alert(obj.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>11/16 In-class exercise</title> <meta charset="utf-8" /> </head> <body> <script> const findTotalResults = (obj) => { alert(obj.totalResults); }; </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script> </body> </html>

-- Nov 16 In-Class Exercise Thread
<!DOCTYPE html> <html>
	<head>
		<title>JS Exercise</title>	
	</head>
	<body>
	<script>
			function findTotalResults(obj)
			{
                alert(obj.totalResults);
			}
		</script>
		<script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"/>
	</body>
</html>
<!DOCTYPE html> <html> <head> <title>JS Exercise</title> </head> <body> <script> function findTotalResults(obj) { alert(obj.totalResults); } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"/> </body> </html>
2022-11-20

-- Nov 16 In-Class Exercise Thread
<!DOCTYPE html> <html>
    <head>
        <title>In Class Exercise 11/16</title>
        <meta charset="utf-8"/>
    </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> <html> <head> <title>In Class Exercise 11/16</title> <meta charset="utf-8"/> </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>

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

-- Nov 16 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en-US">
    <head>
        <title>Exercise</title>
        <meta charset="utf-8"/>
    </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>
(Edited: 2022-11-21)
<!DOCTYPE html> <html lang="en-US"> <head> <title>Exercise</title> <meta charset="utf-8"/> </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>

-- Nov 16 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en"> <head>
    <meta charset="UTF-8">
    <title>In-Class Exercise</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"> <head> <meta charset="UTF-8"> <title>In-Class Exercise</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>

-- Nov 16 In-Class Exercise Thread
<!DOCTYPE html> <html lang="en"> <head>
    <meta charset="UTF-8">
    <title>Nov 16 In_Class Exercise</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> <html lang="en"> <head> <meta charset="UTF-8"> <title>Nov 16 In_Class Exercise</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>

-- Nov 16 In-Class Exercise Thread
 <!DOCTYPE html>
 <html lang="en-US">
    <head>
        <title>in class 11/16</title>
        <meta charset="utf-8" />
    </head>
    <body>
        <script>
            const findTotalResults = (obj) => {
                alert(obj.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>in class 11/16</title> <meta charset="utf-8" /> </head> <body> <script> const findTotalResults = (obj) => { alert(obj.totalResults); }; </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"> </script> </body> </html>

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

-- Nov 16 In-Class Exercise Thread
 <!DOCTYPE html>
<html lang="en-US">
    <head>
        <title>Proxies</title>
        <meta charset="utf-8" />
    </head>
    <body>
        <h1>Proxies</h1>
        <script>
            function findTotalResults(obj) {
                alert("The total number of results are: " + obj.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>Proxies</title> <meta charset="utf-8" /> </head> <body> <h1>Proxies</h1> <script> function findTotalResults(obj) { alert("The total number of results are: " + obj.totalResults) } </script> <script src="https://www.yioop.com/s/news?f=json&callback=findTotalResults"></script> </body> </html>
[ Next ]
X