Scientific Calculator jQuery Plugin – jsRapCalculator

Want to add Scientific Calculator on your website? If yes then here I am going to share simple jQuery Plugin which help you to add Scientific Calculator on your Web App. jsRapCalculator is a JavaScript library used to create a customizable, well-designed scientific calculator web app using jQuery.


Libraries

Add Plugins JS+CSS library on page alng with jQuery Core library.

<link rel="stylesheet" href="jsRapCalculator.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="jsRapCalculator.js"></script>

HTML

Create simple HTML container where you need to display Scientific Calculator

<div id="calculator"></div>

JS

Call the plugin and enable calculator.

$(function(){
  $('#calculator').jsRapCalculator({
    name:'CalculatorDemo'
  });
});




List of options to customize the the calculator.

$(function(){
  $('#calculator').jsRapCalculator({
    name:'CalculatorDemo',
    showMode: false,
    showBitwise: false,
    showHistory: false
  });
});

See live demo and download source code.

DEMO | DOWNLOAD

This awesome plugin is developed by Thibor. Visit their official github repository for more information and follow for future updates.