{{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 Sequenced Collection Java Sequenced Collection The Sequenced Collection feature was introduced in Jav...