Hi!
Haist. We don't had regular class this week again because of the events that has been removed causes by the one week no classes. Like the cosplay contest, we're very busy in this kind of contest. And the Quiz bee in Science had been removed this week. I'm very shocked because I don't know what to answer but the truth is I wanted to participate in the quiz bee. So I tried my best and it works! I got the 4th place. Thanks God. Improvement!
Signing off.
Friday, 26 September 2014
Saturday, 20 September 2014
Week 16: September 15- 19 Flooded!!
Hi!
Here at home with my siblings and with my mother. As "Mario" moves, several areas have been placed under state of calamity as tropical storm "Mario" pounds parts of Luzon. Officials have declared a state of calamity in Dagupan, Pangasinan and even Calasiao, where heavy flooding has been reported. So we don't had classes this week. How sad? :(
Signing off.
Here at home with my siblings and with my mother. As "Mario" moves, several areas have been placed under state of calamity as tropical storm "Mario" pounds parts of Luzon. Officials have declared a state of calamity in Dagupan, Pangasinan and even Calasiao, where heavy flooding has been reported. So we don't had classes this week. How sad? :(
Signing off.
Saturday, 13 September 2014
Week 15 : September 8-12 Learning more in JavaScript
Hi!
We continued typing and discussing the JavaScript methods.
Here are the pictures of my work. Yes! I've finished it through hardwork and patience. The alert() method displays an alert box with a specified message and an OK button. An alert box is often used if you want to make sure information comes through to the user.
Note: The alert box takes the focus away from the current window, and forces the browser to read the message. Do not overuse this method, as it prevent the user from accessing other parts of the page until the box is closed.
If the user clicks OK, the
Signing off.
We continued typing and discussing the JavaScript methods.
Here are the pictures of my work. Yes! I've finished it through hardwork and patience. The alert() method displays an alert box with a specified message and an OK button. An alert box is often used if you want to make sure information comes through to the user.
Note: The alert box takes the focus away from the current window, and forces the browser to read the message. Do not overuse this method, as it prevent the user from accessing other parts of the page until the box is closed.
Question: How do I display a user prompt from JavaScript?
Answer: To display a user prompt dialog, use the JavaScript
prompt() method:
Returned Value:
The value returned by
The value returned by
prompt depends on what exactly the user does with the dialog. If the user types something and then clicks OK or presses Enter, the prompt method returns the user input string. If the user clicks OK or presses Enter without typing anything into the prompt dialog, the method returns the suggested input, as specified in the second argument passed to prompt. If the user dismisses the dialog (e.g. by clicking Cancel or pressing Esc), then in most browsers the prompt method returns null.
Question: How do I display an OK/Cancel dialog box from JavaScript?
Answer: To display an OK/Cancel box, use the
Returned value:confirm() method:If the user clicks OK, the
confirm method returns true. If the user clicks Cancel, the method returns false.Signing off.
Saturday, 6 September 2014
Week 14 : September 1-5 Always be prepared!
Hi..
Before we had a quiz, we were typing the JavaScript 2. And we've just surprise, I also think that Sir is kidding but he's not. Sir arranged our sits and he secured no cheats inside the classroom. I'm glad at least I've got 10 out of 20. haha
And here is our online quiz. I felt nervous and I don't know how to start it and how to end it. But I got at least 35 points in this kind of online quiz. Its okay because I've learned a lot of it. Thank you.
Lesson of the Week.
Before we had a quiz, we were typing the JavaScript 2. And we've just surprise, I also think that Sir is kidding but he's not. Sir arranged our sits and he secured no cheats inside the classroom. I'm glad at least I've got 10 out of 20. haha
And here is our online quiz. I felt nervous and I don't know how to start it and how to end it. But I got at least 35 points in this kind of online quiz. Its okay because I've learned a lot of it. Thank you.
Lesson of the Week.
Saturday, 30 August 2014
Week 13: August 25-29 Chill
Hi!
Haist. We did an activity and I got it. Yes! I knew it, I've been proved to myself that I've learned at least one of it. Now, JavaScript is really full of fun and very interesting. It is not difficult and it is not also easy but it is very enjoyable.
Signing off.
Haist. We did an activity and I got it. Yes! I knew it, I've been proved to myself that I've learned at least one of it. Now, JavaScript is really full of fun and very interesting. It is not difficult and it is not also easy but it is very enjoyable.
JavaScript Variables:
Like many other programming languages, JavaScript has variables. Variables can be thought of as named containers. You can place data into these containers and then refer to the data simply by naming the container.
Friday, 22 August 2014
Week 12: August 18 - 22 Yeah! JavaScript!!!
Hi!
We discussed about the JavaScript and we did some activity.
1 .alert()
2 .prompt()
3. confirm()
Data Types
Picturestakenfrom : https://www.google.com.ph/searchq=pre+tag&source=lnms&tbm=isch&sa=X&ei=xuL6U6DmEY3t8AXtooIQ&ved=0CAYQ_AUoAQ&biw=1024&bih=624#q=pre+tag+in+html5&tbm=isch
We discussed about the JavaScript and we did some activity.
1 .alert()
2 .prompt()
3. confirm()
alertoutputs a message.
promptoutputs a message and waits for user input, then returns the value ornullif ESC is pressed.
confirmoutputs a message and awaits until user presses ok or cancel. The returned value istrue/false
Data Types
| TYPE | EXAMPLE |
| Numbers | Any number, such as 17, 21, or 54e7 |
| Strings | "Greetings!" or "Fun" |
| Boolean | Either true or false |
| Null | A special keyword for exactly that – the null value (that is, nothing) |
- Numbers - are values that can be processed and calculated. You don't enclose them in quotation marks. The numbers can be either positive or negative.
- Strings - are a series of letters and numbers enclosed in quotation marks. JavaScript uses the string literally; it doesn't process it. You'll use strings for text you want displayed or values you want passed along.
- Boolean (true/false) - lets you evaluate whether a condition meets or does not meet specified criteria.
- Null - is an empty value. null is not the same as 0 -- 0 is a real, calculable number, whereas null is the absence of any value.
Credits from http://sislands.com/coin70/week1/datatype.htm.
* Pre Tag*
The HTML <pre> tag represents preformatted text. Text within this element is typically displayed in a non proportional font exactly as it is laid out in the file. whitespaces inside this element are displayed as typed.
The HTML <pre> tag represents preformatted text. Text within this element is typically displayed in a non proportional font exactly as it is laid out in the file. whitespaces inside this element are displayed as typed.
Picturestakenfrom : https://www.google.com.ph/searchq=pre+tag&source=lnms&tbm=isch&sa=X&ei=xuL6U6DmEY3t8AXtooIQ&ved=0CAYQ_AUoAQ&biw=1024&bih=624#q=pre+tag+in+html5&tbm=isch
Friday, 15 August 2014
Week 11: August 11-15 JavaScript Introduction
Hi!
Here are examples we did in JavaScript.
Haist... JavaScript is really exciting..Love it...
General introduction
show page contents
The fact that the script is in the HTML page means that your scripts can be seen and copied by whoever views your page. Nonetheless, to my mind this openness is a great advantage, because the flip side is that you can view, study and use any JavaScript you encounter on the WWW.JavaScript is most commonly used as a client side scripting language. This means that JavaScript code is written into an HTML page. When a user requests an HTML page with JavaScript in it, the script is sent to the browser and it's up to the browser to do something with it.
JavaScript can be used in other contexts than a Web browser. Netscape created server-side JavaScript as a CGI-language that can do roughly the same as Perl or ASP. There is no reason why JavaScript couldn’t be used to write real, complex programs. However, this site exclusively deals with the use of JavaScript in web browsers.
If you don’t have any programming experience at all it’s best to start with some gentle JavaScript examples that teach you the basics. It might be a good idea to buy Negrino & Smith, “JavaScript for the World Wide Web”, 4th edition, Peachpit Press, 2001. It contains some very useful examples and though it doesn’t treat advanced programming tricks, it will certainly help you get started. Of course this site also offers plenty of help.
I can also recommend Jeremy Keith, DOM Scripting: Web Design with JavaScript and the Document Object Model, 1st edition, Friends of Ed, 2005. This, too, is a book that doesn't delve too deeply into technology, but gives non-programmers such as graphic designers/CSS wizards an excellent overview of the most common uses of JavaScript - as well as the most common problems.
Credits from http://www.quirksmode.org/js/intro.html.
Here are examples we did in JavaScript.
Haist... JavaScript is really exciting..Love it...
Subscribe to:
Posts (Atom)
Hi!
Haist. We don't had regular class this week again because of the events that has been removed causes by the one week no classes. Like the cosplay contest, we're very busy in this kind of contest. And the Quiz bee in Science had been removed this week. I'm very shocked because I don't know what to answer but the truth is I wanted to participate in the quiz bee. So I tried my best and it works! I got the 4th place. Thanks God. Improvement!
Signing off.
Haist. We don't had regular class this week again because of the events that has been removed causes by the one week no classes. Like the cosplay contest, we're very busy in this kind of contest. And the Quiz bee in Science had been removed this week. I'm very shocked because I don't know what to answer but the truth is I wanted to participate in the quiz bee. So I tried my best and it works! I got the 4th place. Thanks God. Improvement!
Signing off.
Hi!
Here at home with my siblings and with my mother. As "Mario" moves, several areas have been placed under state of calamity as tropical storm "Mario" pounds parts of Luzon. Officials have declared a state of calamity in Dagupan, Pangasinan and even Calasiao, where heavy flooding has been reported. So we don't had classes this week. How sad? :(
Signing off.
Here at home with my siblings and with my mother. As "Mario" moves, several areas have been placed under state of calamity as tropical storm "Mario" pounds parts of Luzon. Officials have declared a state of calamity in Dagupan, Pangasinan and even Calasiao, where heavy flooding has been reported. So we don't had classes this week. How sad? :(
Signing off.
Hi!
We continued typing and discussing the JavaScript methods.
Here are the pictures of my work. Yes! I've finished it through hardwork and patience. The alert() method displays an alert box with a specified message and an OK button. An alert box is often used if you want to make sure information comes through to the user.
Note: The alert box takes the focus away from the current window, and forces the browser to read the message. Do not overuse this method, as it prevent the user from accessing other parts of the page until the box is closed.
If the user clicks OK, the
Signing off.
We continued typing and discussing the JavaScript methods.
Here are the pictures of my work. Yes! I've finished it through hardwork and patience. The alert() method displays an alert box with a specified message and an OK button. An alert box is often used if you want to make sure information comes through to the user.
Note: The alert box takes the focus away from the current window, and forces the browser to read the message. Do not overuse this method, as it prevent the user from accessing other parts of the page until the box is closed.
Question: How do I display a user prompt from JavaScript?
Answer: To display a user prompt dialog, use the JavaScript
prompt() method:
Returned Value:
The value returned by
The value returned by
prompt depends on what exactly the user does with the dialog. If the user types something and then clicks OK or presses Enter, the prompt method returns the user input string. If the user clicks OK or presses Enter without typing anything into the prompt dialog, the method returns the suggested input, as specified in the second argument passed to prompt. If the user dismisses the dialog (e.g. by clicking Cancel or pressing Esc), then in most browsers the prompt method returns null.
Question: How do I display an OK/Cancel dialog box from JavaScript?
Answer: To display an OK/Cancel box, use the
Returned value:confirm() method:If the user clicks OK, the
confirm method returns true. If the user clicks Cancel, the method returns false.Signing off.
Hi..
Before we had a quiz, we were typing the JavaScript 2. And we've just surprise, I also think that Sir is kidding but he's not. Sir arranged our sits and he secured no cheats inside the classroom. I'm glad at least I've got 10 out of 20. haha
And here is our online quiz. I felt nervous and I don't know how to start it and how to end it. But I got at least 35 points in this kind of online quiz. Its okay because I've learned a lot of it. Thank you.
Lesson of the Week.
Before we had a quiz, we were typing the JavaScript 2. And we've just surprise, I also think that Sir is kidding but he's not. Sir arranged our sits and he secured no cheats inside the classroom. I'm glad at least I've got 10 out of 20. haha
And here is our online quiz. I felt nervous and I don't know how to start it and how to end it. But I got at least 35 points in this kind of online quiz. Its okay because I've learned a lot of it. Thank you.
Lesson of the Week.
Hi!
Haist. We did an activity and I got it. Yes! I knew it, I've been proved to myself that I've learned at least one of it. Now, JavaScript is really full of fun and very interesting. It is not difficult and it is not also easy but it is very enjoyable.
Signing off.
Haist. We did an activity and I got it. Yes! I knew it, I've been proved to myself that I've learned at least one of it. Now, JavaScript is really full of fun and very interesting. It is not difficult and it is not also easy but it is very enjoyable.
JavaScript Variables:
Like many other programming languages, JavaScript has variables. Variables can be thought of as named containers. You can place data into these containers and then refer to the data simply by naming the container.
Hi!
We discussed about the JavaScript and we did some activity.
1 .alert()
2 .prompt()
3. confirm()
Data Types
Picturestakenfrom : https://www.google.com.ph/searchq=pre+tag&source=lnms&tbm=isch&sa=X&ei=xuL6U6DmEY3t8AXtooIQ&ved=0CAYQ_AUoAQ&biw=1024&bih=624#q=pre+tag+in+html5&tbm=isch
We discussed about the JavaScript and we did some activity.
1 .alert()
2 .prompt()
3. confirm()
alertoutputs a message.
promptoutputs a message and waits for user input, then returns the value ornullif ESC is pressed.
confirmoutputs a message and awaits until user presses ok or cancel. The returned value istrue/false
Data Types
| TYPE | EXAMPLE |
| Numbers | Any number, such as 17, 21, or 54e7 |
| Strings | "Greetings!" or "Fun" |
| Boolean | Either true or false |
| Null | A special keyword for exactly that – the null value (that is, nothing) |
- Numbers - are values that can be processed and calculated. You don't enclose them in quotation marks. The numbers can be either positive or negative.
- Strings - are a series of letters and numbers enclosed in quotation marks. JavaScript uses the string literally; it doesn't process it. You'll use strings for text you want displayed or values you want passed along.
- Boolean (true/false) - lets you evaluate whether a condition meets or does not meet specified criteria.
- Null - is an empty value. null is not the same as 0 -- 0 is a real, calculable number, whereas null is the absence of any value.
Credits from http://sislands.com/coin70/week1/datatype.htm.
* Pre Tag*
The HTML <pre> tag represents preformatted text. Text within this element is typically displayed in a non proportional font exactly as it is laid out in the file. whitespaces inside this element are displayed as typed.
The HTML <pre> tag represents preformatted text. Text within this element is typically displayed in a non proportional font exactly as it is laid out in the file. whitespaces inside this element are displayed as typed.
Picturestakenfrom : https://www.google.com.ph/searchq=pre+tag&source=lnms&tbm=isch&sa=X&ei=xuL6U6DmEY3t8AXtooIQ&ved=0CAYQ_AUoAQ&biw=1024&bih=624#q=pre+tag+in+html5&tbm=isch
Hi!
Here are examples we did in JavaScript.
Haist... JavaScript is really exciting..Love it...
General introduction
show page contents
The fact that the script is in the HTML page means that your scripts can be seen and copied by whoever views your page. Nonetheless, to my mind this openness is a great advantage, because the flip side is that you can view, study and use any JavaScript you encounter on the WWW.JavaScript is most commonly used as a client side scripting language. This means that JavaScript code is written into an HTML page. When a user requests an HTML page with JavaScript in it, the script is sent to the browser and it's up to the browser to do something with it.
JavaScript can be used in other contexts than a Web browser. Netscape created server-side JavaScript as a CGI-language that can do roughly the same as Perl or ASP. There is no reason why JavaScript couldn’t be used to write real, complex programs. However, this site exclusively deals with the use of JavaScript in web browsers.
If you don’t have any programming experience at all it’s best to start with some gentle JavaScript examples that teach you the basics. It might be a good idea to buy Negrino & Smith, “JavaScript for the World Wide Web”, 4th edition, Peachpit Press, 2001. It contains some very useful examples and though it doesn’t treat advanced programming tricks, it will certainly help you get started. Of course this site also offers plenty of help.
I can also recommend Jeremy Keith, DOM Scripting: Web Design with JavaScript and the Document Object Model, 1st edition, Friends of Ed, 2005. This, too, is a book that doesn't delve too deeply into technology, but gives non-programmers such as graphic designers/CSS wizards an excellent overview of the most common uses of JavaScript - as well as the most common problems.
Credits from http://www.quirksmode.org/js/intro.html.
Here are examples we did in JavaScript.
Haist... JavaScript is really exciting..Love it...
.jpg)
.jpg)















