Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script>
- var p=0;
- function obavestenje(){
- if(confirm('Napon je izmeren'))
- p=1;
- window.history.back();
- }
- function zabrana(){
- if (p!=1) alert('Prvo izmeri napon');
- document.getElementById("nes").addEventListener("click", function(event){
- event.preventDefault()});
- }
- if(p==1){
- document.getElementById("nes").addEventListener("click", function(event){
- return true;
- })
- </script>
- </head>
- <body>
- <style>
- .main-container {
- margin:0 auto;
- text-align:center;
- padding-top:20%;
- width:85%;
- float:center;
- color:gray;
- }
- .mali {
- margin: 0 auto;
- width:50%;
- text-align: center;
- }
- hr{
- width:80%;}
- </style>
- <big><big>
- <div class="main-container">
- <h1><b><u>Prva vezba</u><b></h1>
- <h2>Merenje struje</h2>
- <form><input type="submit" value="Izmeri struju" OnClick="obavestenje()"></form>
- <form action="/vezba1V" id="nes"><input type="submit" value="Merenje napona" OnClick="zabrana()"></form>
- <form action="/nazad"><input type="submit" value="Vrati se nazad"></form>
- </div></big></big>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment