Welcome to Jonathon's JavaScript Website!


Jonathon will implement his new JavaScript skills into this website. This website serves as his JavaScript portfolio and his CMPSCI 190 Class at College of the Canyons. Enjoy!
(Note: These labs use code from the book Sams Teach Yourself Javascript in 24 Hours)

Week One


Lab 1

Write alert(document.lastModified), which contains the date and time that the web page was last changed.

Click Here

Lab 2

Add an "onClick" handler to set the title property of the image to "My New Title." The change occurs in the background. Use developer tools to see change.

Click Here

Lab 3

Write a function to take a temperature value in Celsius as an argument and return the equivalent temperature in Fahrenheit

Click Here

Lab 4

Modify to output the date and time as a single string, such as: 25 Dec 2011 12:35

Click Here

Lab 5

Allow the user to enter a starting string via a prompt() dialog. Extend the script to use some of the other string and array functions.

Click Here

Week Two


Lab 6

Rewrite the banner cycling script to show a random banner at each change, instead of cycling through them in order.

Click Here

Lab 7

Write a constructor function for a Card object with properties suit (diamonds, etc.) and face (ace, etc). Add methods to set the values of suit and face.

Click Here

Lab 8

Instantiate an object using the new Object() syntax and add some properties with values of type array. Use the stringify() method to turn the object into a JSON string and display it.

Click Here

Lab 9

Validate that the phone field of the form is not blank. Have the program produce only one alert message, saying which field(s) require attention.

Click Here

Lab 10

Rewrite the code for cookietest.html and cookietest2.html to write multiple values to the same cookie and separate them on retrieval, displaying the values on separate lines. Use the hash (#) character as delimiter.

Click Here

Week Three


Lab 11

Write a function to find all the HTML comments in the body section of a page and concatenate them into a single string, then introduce and test your new function.

Click Here

Lab 12

Unfortunately, insertAfter() is not a method, but I will write an insertAfter() function to do this task using similar arguments to insertBefore(), that is, insertAfter(newNode, targetNode).

Click Here

Lab 13

Edit the program to change other style properties such as font, decoration, element borders, padding, and margins.

Click Here

Lab 14

Modify the code to ensure that users without JavaScript enabled see just the content of the noscript tag, without the additional text and button being present.

Click Here

Lab 15

Rewrite the code so the spaceship oscillates in both vertical and horizontal directions, instead of panning left-to-right. At the same time, make the code more unobtrusive by extracting JavaScript and CSS into external files.

Click Here

Week Four


Lab 16

Change the code of the clock project such that the clock automatically updates at regular intervals, instead of when the button is clicked.

Click Here

Lab 17

Modify the code to present a message to the user while waiting for an Ajax request to complete (e.g. Loading...).

Click Here

Lab 18

Use Firebug to monitor the network traffic for an Ajax-heavy site like Facebook, Gmail, or Twitter. Record anything you found and post it.

Click Here

Lab 19

Write a simple script using the Prototype library, or use an example script from the Prototype website at www.prototypejs.org.

Click Here

Lab 20

Pick a few examples from the book and try to rewrite them using jQuery.

Click Here

Week Five


Lab 21

Using the ThemeRoller, reproduce some of the example scripts and compare the appearance of your pages with those displayed in the figures.

Click Here

Lab 22

Modify the code from the book to include buttons to increase and decrease the video zoom level. Use Zoom(percent) for the buttons.

Click Here

Lab 23

Rewrite some of the examples from the book using some of the new HTML5 interfaces.

Click Here

Lab 24

Browse the available JSON APIs listed at www.programmableweb.com/apitag/weather?format=JSON and try writing a simple Chrome extension to display the data.

Click Here