Send Ether using Javascript and Html
In this post i will be using an html file and javascript to send Ether from one account to another account. the Ideal scenario is "Donations". From one account to another account(Author/Organization). In this process i will make use of Metamask and Web3 and Ropsten Test Net. An Event listener waits for the load of the website and checks if its Web3 Compatible, before proceeding. For the Chrome browser to be Web3 Compatible, it needs to have Metamask installed. Note: You cant run this on your computer as an Html File Due to browser security restrictions . you will need a web server such as Apache or IIS . <html> <head> <title>Smart Contract Ethereum Aresh</title> </head> <body> <fieldset> <label> Ether: <input type="text" id="amount"></input> </label> <button onclick="sendmoney()">Donate to Aresh</button> <div id="response"...