Tagged Questions
0
votes
3answers
35 views
javascript or jquery to extract integer out of html markup
I'm trying to extract the second integer from inside the below markup.
<div class="orbit-slide-number">
<span>1</span>
of
<span>3</span>
</div>
If I ...
1
vote
2answers
92 views
Can someone please explain to me what the “|” symbol is doing in Javascript?
What does it do?
At first I thought it was a shorthand way of doing Math.max()
Every time I did (1 | 0) or (0 | 2985235), I got back the larger number.
However, I was wrong, as I soon found out when ...
0
votes
1answer
44 views
Simple Javascript Math Function- addition/not working?
This is my function:
var ans=(X*X)/(Y+Z);
When I enter 10, 20, and 10 - respectively- the addition bit comes out as 2010 and not 30.
How can I fix this?
1
vote
1answer
60 views
Getters and math issue
I was attempting to experiment with getters in JavaScript, and tried to come up with the following to see just how getters would be useful in real world uses:
Object.defineProperty(Number.prototype, ...
0
votes
1answer
48 views
Disallow numbers divided not equally in jquery
There is table of records, where columns are 12 month + summary.
I have simple jQuery action which onChange of summary row divide number equaly for each month.
Because it's accounting stuff I round ...
4
votes
1answer
35 views
How to detect mouseenter direction on a specific element
I currently have a function which detects the direction of the mouse enter. It returns an integer (0-3) for each section as illustrated below.
I'm trying to figure out how to alter this function to ...
6
votes
2answers
77 views
Clipping a Rectangle in JavaScript
I'm trying to write a function that takes two overlapping rectangles and returns an array of rectangles that cover the area of rectangle A, but exclude area of rectangle B. I'm having a hard time ...
0
votes
1answer
39 views
Create waypoints on a polygon with JS
This is more a mathematical than a JS problem, but I hope you can help me.
I'm trying to create waypoints around a polygon. It should be able to walk on a line. I need to observe the following cases ...
0
votes
2answers
22 views
HTML Trying to get value from textbox and use it for a math equation in Javascript(Volume)
I would like to make it so it pulls the value I input into the textbox into the variables l w and h then does the equation l*w*h and presents the answer im not that good at coding I just started and ...
0
votes
2answers
36 views
javascript calculate date from week number
How i can calculate the date in javascript knowing weeknumber and the year? For week number 20 and year 2013 to obtain 5/16/2013
I am trying so:
Date.prototype.dayofYear = function() {
...
-2
votes
2answers
36 views
Adding JavaScript variables more efficiently?
If i have two sum variables with total individual variables. Is there an easier way of getting the sum?
Example:
var first_one = 5;
var first_two = 5;
var second_one = 5;
var second_two = 5;
var ...
1
vote
4answers
32 views
Non Decimal Numbers on Math.ceil or Math.round in JavaScript?
I want to use Javascript to round up a number.
For example like this,
15 => 20
345 => 400
201 => 300
180 => 200
93 => 100
22 => 30
How to achieve this using Javascript? I know i ...
2
votes
5answers
110 views
Assign javascript variables using html select options
Thanks a lot guys for the all the help - really appreciate it.
However, what I want to do next is really complicated and I am certain you guys have the brains to help me.
This is the more complex ...
-2
votes
1answer
80 views
Doing javascript calculations using select dropdown options? [closed]
Is it possible to do calculations based on selected options?
Here is my code:
<input type="text" id="resultBox" readonly="true" />
<select id="select1">
<option ...
1
vote
1answer
40 views
Doing calculations using javascript with select options? [closed]
Somebody please help me with some javascript coding. I am building a website using asp.net where there are multiple html select elements and their selected option determines what the value of an input ...
0
votes
3answers
65 views
Parsing integers in AngularJS
I am using AngularJS in one of our application.
In the code below, while loading the page the expression addition (number, multipler) parses correctly and give output as 1+1=2 but while changing the ...
-4
votes
1answer
55 views
Dividing a range of values to equal parts
Is there any algorithm to split a number into equal n parts. My use case is i have a min and max value and i have to divide that max - min value into n equal parts.
Here i have to handle even the ...
1
vote
5answers
55 views
Calculating percentages in js [duplicate]
I'm trying to create a simple percentage calculator using javascript.
I try a simple calculation in the console (try it):
106 / 100 * 10
And it returns me:
10.600000000000001
What is going on ...
0
votes
1answer
22 views
CraftyJS how to calculate vector between 2 sprites?
I am a noob in game programming and not so good at Maths, I am trying to write a 1945 style shooting game, all been good so far but I am in a bottle neck that I cannot figure out how to make enemy aim ...
0
votes
1answer
27 views
JavaScript: Trim .toPrecision() trailing zeros
I am creating an online calculator using JavaScript.
I have this to work out a calculation:
eval(expression).toPrecision(10);
This produces the right output in almost all cases. E.g.
...
5
votes
5answers
118 views
Writing a function that “solves” an equation
I want to write a function which will allow me to "solve" an equation in js.
what I want (not in a programming language):
function f(x) { 1 + x * x }
var z = 2
var y = f(z) //y will be 5 as a ...
0
votes
2answers
90 views
Why does my JavaScript Prime Number-Generator not work?
The aim of this program is to list all the prime numbers from 1 up.
I am a complete novice. I began writing this in C++ (unsuccessfully) and translated to this (JS)
I am aware of some problems but ...
1
vote
1answer
45 views
Javascript Collision Detection between circle and polygon?
I'm unsure how to go about defining the area for a collision detection function when I have a polygon that looks like:
______
/ _____|
/ /
/ /
---
I draw the polygon using lineTo() a few ...
0
votes
1answer
64 views
Please fix my date diff math
I am trying to help in another question where the asker wants to return the nearest time from an object
I have all the trimmings but have a brain freeze on the simple math to decide what is nearest.
...
3
votes
3answers
171 views
Age (+leap year) calculation in Javascript?
I've read this question but there were many comments which some said it was accurate and some said it wasn't accurate.
Anyway I have this code which calc person's age in Javascript :
function ...
0
votes
4answers
56 views
Select characters separately
I need to select only day, month and year (separately) and then calculate days until due. Why is this not functioning correctly? Am I using the substr correctly?
http://jsfiddle.net/infatti/XeqPT/15/
...
-2
votes
2answers
70 views
How does trig work in JavaScript?
I have a value and its cosine as:
-0.2567721374914637
Cosine: -0.04253775592822526
Compare what we get in Python:
>>> import math
>>> math.cos(-0.2567721374914637)
...
-2
votes
2answers
44 views
Trying to translate proportionality function in math into JS [closed]
I'm trying to make a game of chance where there is a 10% chance of somebody winning. Based on the number of players participating, a proportional number of squares is generated. Each one of these ...
4
votes
2answers
68 views
Minimum distance between two elements in a circular array
Given a circular array, what is an efficient way to determine the minimum distance between two elements?
For example moving from here
[0,0,0,0,0,1]
To here
[1,0,0,0,0,0]
Is more convenient from ...
1
vote
1answer
41 views
jqMath: How to colorize fractions inside jqMath tables
In writing math using jqMath, I have the need to highlight specific parts of math problems.
/* specific to override border bottom important jqMath adds */
fmath td.redunderline {
border-bottom: ...
4
votes
1answer
64 views
Why can't I get big number libraries for javascript to work?
Looking for a library to work with large numbers on javascript (bigger than 2^53) I checked a couple of questions (JavaScript large number library? and Is there a bignum library for JavaScript?) and ...
0
votes
1answer
27 views
Round to nearest multiple with offset in JS
I have a number I want to round to the nearest multiple of X with an offset. For example, how would I round a number to the nearest number that is 5 more than a multiple of 12 (ie 5, 17, 29...)?
0
votes
2answers
60 views
Unexpected result when converting decimal to fraction
function gcd(a, b) {
return (b) ? gcd(b, a % b) : a;
}
var dec2Frac = function (d) {
var top = d.toString().replace(/\d+[.]/, '');
var bot = Math.pow(10, top.length);
if (d > 1) {
...
-2
votes
4answers
44 views
Truncate all digits except first
I have a function that returns: 3333333333333333/5000000000000000 which is meaningless. How do I truncate all digits except the first, so it becomes 3/5 ?
0
votes
3answers
43 views
Javascript matrix addition of an arbitrary number of arrays' values, without using array.map()
I'm trying to build a helper function for my AngularJS app (but the solution doesn't have to use angular.forEach). The function should take an arbitrary number of arrays with same length and add the ...
-2
votes
0answers
26 views
How do I add a form field to my JS Math Equation?
The following script adds up all the values selected by the user. It then subtracts the lowest number they selected from the total.
<script language="JavaScript">
var prices = [];
...
0
votes
1answer
66 views
How do I add 2 values to the following equation?
This is my javascript code whichs adds a number of values that the user selects and then subtracts the smallest one from the total:
<script language="JavaScript">
var prices = [];
function ...
0
votes
2answers
63 views
Depending objects, consider rotation when translating an object
I built a simple 2D-car consisting of three elements, using Raphael JS. For that I have the body as an Image and two tires. I separated the elements because I want the tires to spin in an animation.
...
2
votes
3answers
88 views
Calculating Polygon Area
So I've gotten this code in javascript to calculate irregular polygon area from the net.
function polygonArea(X, Y, numPoints)
{
area = 0; // Accumulates area in the loop
j = numPoints-1; ...
0
votes
1answer
52 views
JS- Math.atan(y/x) with x==0
I want to determine an angle by xValue and yValue, but if xValue is Zero I does not work. What shall I do in that case?
Math.atan(yValue/xValue);
0
votes
4answers
79 views
Find centerpoint of polygon in JavaScript
I have a "place" object from Google Maps which has a set of coordinates that represent a bounding box for a given location, say London. Each set of coordinates has a latitude and longitude.
I have ...
1
vote
4answers
49 views
Javascript - Perform user calculation [closed]
I want to let my user write some easy calculation in a field and then calculate what they wrote in onBlur() event.
Let say they write 5*(3+5)-10 and then when they change focus I want to calculate the ...
8
votes
2answers
100 views
Recursive board game with JavaScript
I'm making HTML5 boardgame with JavaScript.
How to find recursively where I can get with dice number 4 from my position 11 in my example board game below?
I have tried this; it works great, but ...
-2
votes
1answer
25 views
JavaScript - Timer - Speeding math glitch [duplicate]
var time_gone = 0
function timer() {
time_gone += 0.01
console.clear()
console.log(time_gone)
setTimeout("timer()", 10)
}
timer()
Try using this ...
0
votes
4answers
82 views
Javascript cell color according to math
I have an html table with numbers. For example:
Col1 Col2 Col3
5 3 1
1 2 1
10 3 2
And i want to use javascript in order each cell has a specific color background according to ...
0
votes
0answers
41 views
jqMath - changing the default fraction look
I'm using jqMath to display math expressions in an Android application, and currently having trouble to make fractions look like I want to. Here's how fractions look after some styling:
This ...
-4
votes
0answers
28 views
Checkboxs calculations for orderform with vat [closed]
I'm new at JavaScript, and I need to create an order form that calculates the products amounts when the check box is selected and it must also add VAT to the total.
I have tried researching it but ...
0
votes
1answer
36 views
Fit element within parent element
I'm trying to make the following:
Fit a HUGE image within a small div element keeping aspect ratio.
But without using the CSS trick like max-width. Manually settings the width/height to the correct ...
0
votes
3answers
50 views
Round up numbers with residue
This code rounds up only the subvalues bigger or equal to 5:
Math.round(2.5) = 3
Math.round(2.4) = 2
I would like to get the following:
Math.round(2.0000000001) = 3
Math.round(2.0) = 2
How do I ...
1
vote
3answers
61 views
HTML5 Canvas - Calculate speed of object in relation to a 'magnet'
I have a 'magnet' directly in the middle of my Canvas and I have objects which are added to the Canvas on click. They're then attracted to the magnet.
I have X and Y distances of the objects in ...







