Sunday, October 20, 2013

LAB #7

This lab had to be the hardest lab we did, we had to make a list of prime numbers from 1 to a 1000 in order and they had to be in columns and boxes. The software used for this lab was adobe dream weaver and javascript. The objective of the lab was to get all the prime numbers. we had to write my javascript functions to get the numbers and then in the html part we made the columns and changed the colors. I personally made a few mistakes before i got this lab to work for me.

LAB #6

In this lab we learned how to make the current date and time popup on the computer. The coding for this lab wasnt very difficult because we could just find the code in w3schools we had alert functions and var statements to get the moving clock. we had to make sure a page is loaded pop up than when you click ok you can see the website. This lab wasnt as hard as the others and was pretty enjoyable.

LAB #5

In this lab we had to make six different buttons containing something inside of them. The last 3 button had to describe 3 different statements that we have learned using Javascript. some of these statements included nested statements, break statements  and if/else statements. This lab was difficult because we had to link each button to one another.we used switch statements , if statements, and break statements for javascript. This lab can benefit us in the future because it helped us with explaining the different statements as well as using them.

LAB #4

In this lab we learned how to create a functional online application that will let you fill out your name , birthday and the current year it will tell you how old you are. Multiple websites contain application boxes to fill out a bunch of stuff. It is good to know how to do its very useful you dont need to do the math the computer does it for you. For this lab we used html coding and input type codes to make this function properly.

LAB #3

This lab involved us making a clickable button that when we would click this button an alert would pop up and say ouch. In this lab we used adobe dreamweaver and javascript. We can use what we learned in this lab with other web sites that we would want to make pop up buttons on. This skill is tough we need to remember the javascript codes. We used window onload code and to apply behavior.

LAB #1

In this lab we talked about all our goals in life and class that we want to do. We did not have to do any special coding for this lab all we had to do was write and design everything using dream weaver. The objective of this lab was just to give our goals. The goals that we created are based on stuff in class and in life. This skill is basically just about expressing ourselves in writting.

Friday, September 20, 2013

What I've learned in the last few weeks of Javascript

                    I've learned a lot this past week of javascript, I've learned it's hard and it's very easy to get lost. Javascript is a computer programming language used to create interactive effects within web browsers. Javascript is a scripting language, its a programming code that can be inserted into HTML pages. Javascript can be put in any modern web browser, its inserted into HTML pages. 

                   Javascript allows you to interact with your computer or website. Javascript was developed by netscape. Javascript improves appearance and site navigation and it can preform calculations. It is embedded within HTML pages. Javascript processes user innput in the web browser. An example of interaction with javascript (about asking for a name) would be:

<script language="javascript">
window.prompt ('enter your name:',');    <- thats what the box is going to say and theres going to be a blank text box that the person can fill in
</script>
<form>
<input type="button" value="press"
onclick="window.alert('hello');">
</form>