Posts

Showing posts from March, 2016

Learn Simple Javascript - Addition of two numbers for Beginners

Image
So you decide to read Javascript. That's a good thing. Javascript is a very useful web technology and you will be glad you read this post. After you read this post you gotta improvise and learn commands as you go along. This is not a classroom. This post will definitely get you started though. Tools you'll need : Notepad ++ - Free. Any Browser - Chrome, Firefox - Also Free. Lets Get started.I assume you have installed the two tools mentioned above. Open Notepad ++ and paste the following simple HTML into it. < html > < head > </ head > < body > Addition of < input type = "text" id = "text1" value = "1" /> and < input type = "text" id = "text2" value = "2" /> is < input type = "text" id = "result" value = "3" /> </ body > </ html > Save the document as whateveryouwant.HTML. Now go to Run