| JavaScript! Here are some examples I created while learning JavaScript. The most useful one is Example 7 which estimates the download time for different size files and different internet connection speeds. You should really check out this JavaScript Hang Man game I made too. Feel free to use/borrow them for your own site if you like any of them. If you do, please include a link to www.JessLilly.com. The source for all of the examples is available for download. Also, you may want to choose View->Source in your browser to see embedded JavaScript. Example 1 Example 2 <!--
document.write("Last Updated ")
document.write(document.lastModified)
// -->
Example 3 <input type="button" name="AlertButton" value="Pop up an Alert Message"
onclick="alert('Hi. I\'m an annoying warning message.')">
Example 4 Try choosing Base 2 and enter 101010101010. You should get 2730 for a result. Try choosing Base 16 and enter A. You will get 10 as a result. Example 5 Example 6 Example 7 Example 99 |