Translate

Wednesday, 15 October 2014

SIMPLE MATHEMATICAL CALCULATIONS IN A BROWSER

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.
 
javascript: alert(calculation part);
for example calculating 6+5 ,write javascript: alert(6+5); in address bar and press enter.
cal1 Use Browser as a calculator without Internet !!!

 For calculating (6*5-2 ), write javascript: alert(6*5-2); in address bar and press enter.
cal2 Use Browser as a calculator without Internet !!!