{{theTime}}

Search This Blog

Total Pageviews

JQuery Example to monitor daily activities of a Kid in a school.

<!-- Click on each activity to disappear after completion-->
<!DOCTYPE html>
<html>
<head>
<script>
$(document).ready(function(){
    $("p").click(function(){
        $(this).hide();
    });
});
</script>
</head>
<body>
<b><u>Student1</u></b>
<p><b>Morning Routine!</p>
<p>Circle Time</p>
<p>Play Time</p>
<p>Music Time</p>
<p>Math Time</p>
<p>Recess Time</p>
<p>Lunch Time</p>
<p>Art Time</p>
<p>Library Time</p>

<b><u>Student2</u></b>
<p><b>Morning Routine!</p>
<p>Circle Time</p>
<p>Play Time</p>
<p>Music Time</p>
<p>Math Time</p>
<p>Recess Time</p>
<p>Lunch Time</p>
<p>Art Time</p>
<p>Library Time</p>
</body>
</html>

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...