Function That Finds The Multiple Of A Number?
Apr 13, 2010
I am trying to write a code that tells if one number is a multiple of another and I type in the numbers from a text box...
<html>
<head>
<script type="text/javascript">
[code]....
View 2 Replies
ADVERTISEMENT
Jan 19, 2010
I recently started on an browser based MMORPG, I just found 1 major issue.I'm using these libraries
JS A* Algoritm ( http://devpro.it/code/137.html )
Jquery ( http://www.jquery.com/ )
Jquery UI (http://ui.jquery.com/ )
So I'm using a little piece of JavaScript code in which im accessing the AStar function. The downside is, the AStar algorithm only finds vertical tiles. (See screenshots below)
function mapmouse (obj) {
//Get the coordinates
coords = obj.id.split('_');
[code]....
If you choose a non-vertical path, var path gives an empty array (path.length = 0 )If I choose a vertical path, it's working as intended.
As you can see with this little test here, the AStar function itself is working properly (the libs.js is used by both the game and the example)[URL]
View 1 Replies
View Related
Apr 24, 2009
I would appreciate any help I can get about setting focus back to a textbox after my javascript validates that the input by a user into the textbox is incorrect. You can see my attempt at this towards the end of the javascript with - dateStr.Edate.focus(); I know the dateStr part is incorrect but not sure what other variable to use. Plus I am guessing I need to put the statement right before each false statement since there are different errors that can occur by the user. Additionally, I have two textboxes that I want the same javascript to validate. How does this affect setting focus to the appropriate textbox after an incorrect input. I am new to javascript so I hope my question makes sense. Thanks.
<HTML>
<HEAD>
<TITLE>Life Connection Program Survey</TITLE>
<SCRIPT LANGUAGE="JavaScript">
function isValidDate(dateStr) {
// Checks for the following valid date format:
// MM/DD/YYYY
[Code]...
View 4 Replies
View Related
May 6, 2011
How would I generate a random number between 0 and 470 at multiples of 10 including 0 and 470?
View 1 Replies
View Related
Jul 20, 2005
I'd like to limit the number of selections a user can make in a
multiple select listbox. I have a note on the interface to say that
only x no. of items should be selected and I check the number server
side but I'd like to implement some javascript to do the same on the
client side. Ideally I'd like the javascript to work in IE5+ and
Netscape6+.
View 29 Replies
View Related
Apr 16, 2010
I have mulitiple 'a' tags with different classes (aclass1, aclass2, aclass(n)) and I have multiple divs, also with consecutive classes (divclass1, divclass2, divclass(n)). Is there a way to select the 'a' tags to match the div based on its number (ie. 'aclass1' with 'divclass1' and aclass2 with divclass2)? For example something like this:
$(document).ready(function() { $(".aclass(n)").event(".divclass(n)");
});
View 3 Replies
View Related
May 19, 2011
ave this form which gets created by pulling stock/products from a database using PHP and beside every product in the row is a little box for input and in there the user can input the quantity of the product they want. Sometimes only 2 products will be outputted and other times 10 or more.What I want to happen is when the user enters in lets say 3 for the quantity of a certain product I want to get a total for how much 3 of that product will cost so I just do 3 multiply by the cost (which I have from the database) and then display the total cost down under where the list of the available products are and I want all this to happen dynamically obviously not using PHP because I don't want the page to have to reload every time they enter in a new quantity.
I know how to display text and stuff in certain divs with certain ID's using Javascript but I just don't know how to keep track of a form and do what I want to do when the number of inputs in the form can range from 1 to 10 or more. Im thinking of some sort of counter which gives every input a different ID like add 1 at the end of the ID name of the input as the PHP script loops through the database query displaying the products but I still don't know how to go about the Javascript side of things
View 2 Replies
View Related
Jul 22, 2002
To round off a value to a specified number of digits:
function RoundIt(Value,Digits) {
var P=Math.pow(10,Digits);
var R=Math.round(Value*P)/P;
var G=true;
while(G) {
R=String(R);
var L=R.length;
var I=R.indexOf('.');
if (I == -1) {
R=R+'.'
} else {
var D=L-I-1;
if (D < Digits) {
R=R+Ɔ'
} else {
G=false;
}
}
}
return R;
}
View 2 Replies
View Related
Oct 29, 2009
I'm using simpleCart() javascript shopping machine for my page.The script accepts values in a specific syntax:onclick="simpleCart.add('name=Some name','price=23.4','quantity=1');"But because the price of the product is not always the same but comes up after previously made calculations, i want to parse the values in simpleCart() through another function. I have made the following one which gets the price from a textbox (resultAlmires) of a form (Almires), then converts it to american format (. instead of ,) makes it have one decimal only and finally parse it to simpleCart() with the use of a variable.However it doesn't seem to work:
function addAlmiri() {
var timi = document.Almires.resultAlmires.value;
timi = timi.replace(/,/,".");
[code]....
View 15 Replies
View Related
Dec 7, 2010
I am working on an HTML project that displays a field with a number in the field by each day. What it does is start at 0 on day one. Each day it adds a 1 to the field. Day 2, the field would say 1, then day 3 would say 2, and so on. I am not sure how to approach this. This is also displayed in an HTML format. I want to to be automatic and change as the date changesI will also need a way to reset it back to zero if possible.
View 27 Replies
View Related
Jun 2, 2009
I have the following function and JSON object as seen below and I need to be able to determine the number of entries for the day that are within June2009 (or whatever month/year is passed to the function) in the JSON object for example I have 2 for June2009 and I need to set the objCount in my function for 1 so I do not get a not defined error in my for loop. How can I get the correct # returned to use as my objCount. for example if June2009 was passed the for loop value of objCount should be 1 and if it was July the objCount should be 0 etc etc.
function getTest7(jsonData, month, year){
alert('running getTest7');
var tempItins = jsonData;
var monthYear = month + year;
var objCount = 0;
var objCount = need to get a valid count for example of June 2009 how many in array for June2009 which is 2 (or actually 1 since starts at 0)
for (var i = 0; i < objCount; i++){
alert('display depDay: ' + tempItins[monthYear][i].day);
}} .....
View 5 Replies
View Related
May 5, 2010
Is there a built in function to format a number to 2 decimal places and to add commas like below.
2,222.33
30,033.98
1,222,345,99
View 2 Replies
View Related
Oct 26, 2011
Create a function that prompts user for a number. Develop the program so that it continues to prompt until it receives valid information. Then create a multiplication table that displays the number multiplied by 1 through prompted number.
View 6 Replies
View Related
Apr 18, 2010
i've got a program that gets input from a user, and then stores it in a cookie. That bit is fine, what is a problem is that its just overwriting the data each time a new entry is made, i believed this to be something do do with it not being numbered entry's, so i added a number into the entry, but for some reason it wont add 1 to the number variable each time the function is called
<html>
<head>
<title>Grader 101</title>
[code]....
View 4 Replies
View Related
Feb 19, 2011
I am working on form validation, i want to validate "Name" input field value . I want that in "Name" input field no number can be input.
Is there any function which search number/s from string ?? i.e if user inputs any number in that field with string i can display error message(Name can't be alpha numeric).
View 6 Replies
View Related
Aug 9, 2011
I need date format of some javascript code I'm using.
Here's the code:
<script language="javascript" type="text/javascript">
function to add number of days (accepts number of days to add)
function AddDays(days) {
var thisDate = new Date();
thisDate.setDate(thisDate.getDate() + days);
return thisDate;
}document.write(AddDays(366))
</script>
This is what I get: Thu Aug 09 2012 16:45:34 GMT-0500 (CDT)
I just want: Aug 09 2012
View 1 Replies
View Related
Apr 22, 2009
How do I get a function to repeat itself an unspecifiednumber of times?BACKGROUND: I have created a digital clock with which I verysatisfied except for one shortcoming: it displays only once and stopsticking. The only way to keep track of the time is to refresh thepage. I have introduced the setInterval( ) function in a variety ofways to compel JSClock() to repeat itself, but to no avail.SOURCE CODE:
(function($) {
$.fn.JSClock = function() {
var today=new Date();
[code]....
View 17 Replies
View Related
Jul 2, 2011
I have a function that does some calculations and populates some text fields with the results. I also have a function that changes the font color of the numbers to red if they are less than zero. What I dont have is a way to make them work together. I imagine I need to pass the results of the calculation function to the change color function, but not sure how to go about doing that. Here is the calculation function:
function to calculate the total costs, gain/loss and return percent.
function calculate()
{
[code]....
View 14 Replies
View Related
Dec 8, 2011
I have several classes named 'ratings_colored'. They all contain a number from 1 to 10. If the number is below 5.5, the number should become red. If not it should become green.
The code below works, but if the first .ratings_colored is higher than 5.5 it will make ALL the classes green. Even the numbers below 5.5! I tried using the 'this' but it didn't work either.
$(document).ready(function () {
View 2 Replies
View Related
Oct 26, 2011
- Create a function that prompts user for a number.
- Develop the program so that it continues to prompt until it receives valid information.
- Then create a multiplication table that displays the number multiplied by 1 through prompted number.
How to get the function to work.
View 5 Replies
View Related
Sep 25, 2010
What this function does is countdown the value of an HTML table-cell to zero (minus 1 every second) then stop counting that specific cell when it's finished. This works perfectly, the problem is that when it is called AGAIN for a different table-cell, the previous cell starts reducing its value by 2 every second instead of 1. This function supports the Hour:Minuteecond format. So, how would I make this function so that I can call an infinite number of different table cells, and the previous table cells timers would not be affected (they would still countdown 1 per second as they should)?
This is the code which CALLS the function, where $i is 1-5 inclusive, defined by PHP:
timer('ff".$i."', ". rand(1,100) .");
This is the BODY of the function itself, called by the above command
var running = new Array(50);
function timer(data, id){
//clearTimeout(id[data]);
var id=new Array(50);
// usage: var id=new Array(50); timer('cq0');
dat=document.getElementById(data);
var time=(dat.innerHTML).split(":");
var done=0;
if(dat.innerHTML == null) {
done = 1;
alert('null');
} if (time[2]>0) time[2]--;
else {
time[2]=59;
if (time[1]>0) time[1]--;
else {
time[1]=59;
if (time[0]>0) time[0]--;
else {
clearTimeout(id[data]);
done=1;
running[data] = 0;
renderStack();
}}}
if (!done){
dat.innerHTML=time[0]+":"+time[1]+":"+time[2];
id[data]=setTimeout("timer('"+data+"')", 1000);
running[data] = 1;
}}
View 1 Replies
View Related
Sep 7, 2011
I have a number of images placed on a map (the images are dots indicating a location)
When clicked, that displays different textual information somewhere on the page. View here and click the dots on the map for what I am trying to explain: [url]
What I want to do now is to toggle these dots so that when clicked, the dot turns white. This I could do with some code I found on the net. However, I need it to toggle all images. In that if one image has been clicked and turned white, and then the user clicks a different black ot, then that black dot should turn white, and the white dot should turn back clack.
View 8 Replies
View Related
Dec 6, 2010
I am having some difficulty in constructing a window.confirm() function that works with my code.So if the form data is valid, I need to use a window.confirm() dialog box to show the user's total cost based on the rental rate of equipment chosen and the reservation period. The user must accept the cost by pressing the confirm button, and if user cancels do not submit data.I have written this code but cannot figure out how to find the number of days from the 2 date fields and use that to calculate and display the total cost.
//confirm submit and display rental cost
var equip = document.forms[0].equipment.value
var pDate = document.forms[0].pickupDate.value[code].....
View 5 Replies
View Related
Nov 11, 2011
I have this script that is supposed to check if a number the user guesses is the same as the randomly generated number.Problem is that the random number generated at the start of the program keeps on changing everytime I click on the "Check if I'm right" button, the random number gets generated again and I never ever get to reach the correct answer
HTML CODE
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
[code].....
View 3 Replies
View Related
Feb 20, 2010
Hello everyone... I've got a question about an onKeyUp event. I'm using a text box that HAS to be a negative number therefore it has to have a - sign in front of the number. Can someone point me in the right direction as to how to write a function to do this? Thanks so much...
View 5 Replies
View Related
May 5, 2011
I am working on trying to create a Picture Bingo JavaScript. I am using the standard Bingo Card Generator and it works great however, I need help coding the script so that the number are associated with a picture for example everytime number 12 would show up on the card an image would replace the number. Here is the code that I am using:
[Code]...
View 1 Replies
View Related