Results for Javascript
How to make accurate rounded corners using HTML5 canvas? How to make accurate rounded corners using HTML5 canvas? Reviewed by Bhaumik Patel on 7:48 PM Rating: 5

Javascript canvas clear arc

Bhaumik Patel 11:36 PM
How can I clear an arc or circle in HTML5 canvas? var canvas = document.querySelector('canvas'); var context = canvas.getCont...Read More
Javascript canvas clear arc Javascript canvas clear arc Reviewed by Bhaumik Patel on 11:36 PM Rating: 5
Canvas mouse over and mouse click Event Canvas mouse over and mouse click Event Reviewed by Bhaumik Patel on 8:24 PM Rating: 5

Highcharts pie Demo

Bhaumik Patel 11:48 PM
$(function() { $('#order_suggestions_graph_by_vendor').highcharts({ credits: { enabled: false }, chart: { ...Read More
Highcharts pie Demo Highcharts pie Demo Reviewed by Bhaumik Patel on 11:48 PM Rating: 5
How do I make the first letter of a string uppercase in JavaScript How do I make the first letter of a string uppercase in JavaScript Reviewed by Bhaumik Patel on 7:09 PM Rating: 5
Pure JavaScript Typewriter Effect With HTML Content Pure JavaScript Typewriter Effect With HTML Content Reviewed by Bhaumik Patel on 7:43 PM Rating: 5
How to Convert Hexadecimal number to decimal in JavaScript? How to Convert Hexadecimal number to decimal in JavaScript? Reviewed by Bhaumik Patel on 7:37 PM Rating: 5
How to get current url in JavaScript and jQuery How to get current url in JavaScript and jQuery Reviewed by Bhaumik Patel on 7:28 PM Rating: 5

Pure Javascript Countdown Timer

Bhaumik Patel 8:20 PM
Simple Pure JS Countdown Timer DEMO function countdownTimer(seconds) { if (seconds <= 0) { document.getElementById(&qu...Read More
Pure Javascript Countdown Timer Pure Javascript Countdown Timer Reviewed by Bhaumik Patel on 8:20 PM Rating: 5

Convert currency into words

Bhaumik Patel 8:11 PM
Number to amount in words using Javascript DEMO function convertNumberToWords(amount) { var words = new Array(); words[0] = &...Read More
Convert currency into words Convert currency into words Reviewed by Bhaumik Patel on 8:11 PM Rating: 5
How to move items in between two select lists using javascript How to move items in between two select lists using javascript Reviewed by Bhaumik Patel on 8:05 PM Rating: 5

Get File Size Using jQuery

Bhaumik Patel 8:23 PM
How to check file size before uploading using jQuery Get File Size Using jQuery All Browsers function GetFileSize(fileid) { try { ...Read More
Get File Size Using jQuery Get File Size Using jQuery Reviewed by Bhaumik Patel on 8:23 PM Rating: 5

How to Refresh Page using jQuery

Bhaumik Patel 7:36 PM
Reload Page Using Javascript Parameter Values Parameter Type Description forceGet Boolean Optional. Specifies the type of...Read More
How to Refresh Page using jQuery How to Refresh Page using jQuery Reviewed by Bhaumik Patel on 7:36 PM Rating: 5

Abs similar to jquery

Bhaumik Patel 8:10 AM
Get the absolute value of a number in Javascript Return the absolute value of a number: Math.abs(-90.83); // Output 90.83 More Examp...Read More
Abs similar to jquery Abs similar to jquery Reviewed by Bhaumik Patel on 8:10 AM Rating: 5
Check Internet Is Connected Or Not Using JavaScript Check Internet Is Connected Or Not Using JavaScript Reviewed by Bhaumik Patel on 7:40 AM Rating: 5
Javascript allow only numbers and decimals Javascript allow only numbers and decimals Reviewed by Bhaumik Patel on 7:43 PM Rating: 5
Javascript get month name from number or date Javascript get month name from number or date Reviewed by Bhaumik Patel on 7:07 PM Rating: 5
Generating a random number between two values using javascript Generating a random number between two values using javascript Reviewed by Bhaumik Patel on 7:19 PM Rating: 5

Pad Left or Right Using JavaScript

Bhaumik Patel 7:19 PM
String Padding in JavaScript // Pad Right String.prototype.padRight = function (l, c) { return this + Array(l - this.length + 1).join...Read More
Pad Left or Right Using JavaScript Pad Left or Right Using JavaScript Reviewed by Bhaumik Patel on 7:19 PM Rating: 5

Replace all in javascript

Bhaumik Patel 7:43 PM
String Replace Using JavaScript // Replace All String.prototype.replaceAll = function (s, r) { return this.split(s).join(r) } // Prin...Read More
Replace all in javascript Replace all in javascript Reviewed by Bhaumik Patel on 7:43 PM Rating: 5