ethereum / mist

[DEPRECATED] Mist. Browse and use Ðapps on the Ethereum network.
http://ethereum.org
GNU General Public License v3.0
7.44k stars 2.13k forks source link

web3.eth.getBalance is missing in HTML #4181

Open vporton opened 5 years ago

vporton commented 5 years ago

Mist 0.11.1:

The following HTML document shows that .getBalance does not work in HTML (web3.eth.getBalance does work in the development console however):

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <script>
        alert(web3.eth.getBalance);
    </script>
</body>
</html>