Html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Html

somebody help the code i posted is not working in app

12th Apr 2018, 4:52 PM
Sumanth Malali
4 Answers
+ 1
Which Code? Link pls?
12th Apr 2018, 4:57 PM
Uttam
Uttam - avatar
+ 1
Yes, I have checked it, it's not working in App.
12th Apr 2018, 5:04 PM
Uttam
Uttam - avatar
0
<html> <head><title>html calculator</title></head> <body> <table colspan="20px" rowspan="20px"> <form name="calculator"> <br>soln is<input type="textfield" name="ans" value=""> <tr> <td><input type="button" value="1" onClick="document.calculator.ans.value+'1'"></td> <td><input type="button" value="2" onClick="document.calculator.ans.value+'2'"></td> <td><input type="button" value="3" onClick="document.calculator.ans.value+'3'"></td> <td><input type="button" value="+" onClick="document.calculator.ans.value+'+'"></td></tr> <tr> <td><input type="button" value="4" onClick="document.calculator.ans.value+'4'"></td> <td><input type="button" value="5" onClick="document.calculator.ans.value+'5'"></td> <td><input type="button" value="6" onClick="document.calculator.ans.value+'6'"></td> <td><input type="button" value="-" onClick="document.calculator.ans.value+'-'"></td></tr> <tr> <td><input type="button" value="7" onClick="document.calculator.ans.value+'7'"></td> <td><input type="button" value="8" onClick="document.calculator.ans.value+'8'"></td> <td><input type="button" value="9" onClick="document.calculator.ans.value+'9'"></td> <td><input type="button" value="*" onClick="document.calculator.ans.value+'*'"></td></tr> <tr> <td><input type="button" value="0" onClick="document.calculator.ans.value+'0'"></td> <td><input type="reset" value="CE"></td> <td><input type="button" value="/" onClick="document.calculator.ans.value+'/'"></td> <td><input type="button" value="=" onClick="document.calculator.ans.value=eval(document.calculator.ans.value)"></td> </tr> </table> </form> </body> </html>
12th Apr 2018, 5:01 PM
Sumanth Malali
0
it's not working in app
12th Apr 2018, 5:04 PM
Sumanth Malali