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)
Write alert(document.lastModified), which contains the date and time that the web page was last changed.
Click HereAdd 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 HereWrite a function to take a temperature value in Celsius as an argument and return the equivalent temperature in Fahrenheit
Click HereAllow 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 HereRewrite the banner cycling script to show a random banner at each change, instead of cycling through them in order.
Click HereWrite 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 HereInstantiate 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 HereValidate 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 HereRewrite 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 HereWrite 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 HereUnfortunately, 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 HereEdit the program to change other style properties such as font, decoration, element borders, padding, and margins.
Click HereModify 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 HereRewrite 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 HereChange the code of the clock project such that the clock automatically updates at regular intervals, instead of when the button is clicked.
Click HereModify the code to present a message to the user while waiting for an Ajax request to complete (e.g. Loading...).
Click HereUse Firebug to monitor the network traffic for an Ajax-heavy site like Facebook, Gmail, or Twitter. Record anything you found and post it.
Click HereWrite a simple script using the Prototype library, or use an example script from the Prototype website at www.prototypejs.org.
Click HereUsing the ThemeRoller, reproduce some of the example scripts and compare the appearance of your pages with those displayed in the figures.
Click HereModify the code from the book to include buttons to increase and decrease the video zoom level. Use Zoom(percent) for the buttons.
Click HereRewrite some of the examples from the book using some of the new HTML5 interfaces.
Click HereBrowse 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