THIS IS A SIMPLE TRICK TO PERFORM SIMPLE MATHEMATICAL CALCULATIONS IN A BROWSER WITHOUT ANY INTERNET.
If you need to calculate some figures, while surfing on the internet ,then no need to open calculator in window or to take any search engine . You can do simple calculation easily in the browser itself. It is done by simple java script, which is described below. You just need to write that script in address bar and press enter and the answer would display immediately in an dialog box.
If you need to calculate some figures, while surfing on the internet ,then no need to open calculator in window or to take any search engine . You can do simple calculation easily in the browser itself. It is done by simple java script, which is described below. You just need to write that script in address bar and press enter and the answer would display immediately in an dialog box.
javascript: alert(calculation part);
for example calculating 6+5 ,write javascript: alert(6+5); in address bar and press enter.
Answer will be displayed in dialog box as shown below.
For calculating (6*5-2 ), write javascript: alert(6*5-2); in address bar and press enter.
You can use +, -, *, /, % and can perform calculation easily without open windows calculator.
No comments:
Post a Comment