CurrentAge Function Not Giving Appropriate Output
Apr 22, 2010
I'm fairly new to writing script and so can only assume I have got something incorrect because the 'ages' are failing to change by -1 when the month and day is greater than the current date.
function currentAge(value){
var theDOB = value;
var theDOB = theDOB.split('/');
var DOBday = theDOB[0];
var DOBmonth = theDOB[1];
var DOByear = theDOB[2];
var todaysDate = new Date()
var yr = todaysDate.getFullYear();
var mth = todaysDate.getMonth() +1;
var dayy = todaysDate.getDate() +1;
var theAge = (yr -DOByear);
var yearBefore = (theAge -1);
if (mth <= DOBmonth && dayy < DOBday) {
return yearBefore;
}
else {
return theAge;
}}
View 1 Replies
ADVERTISEMENT
Nov 3, 2011
var name = "good";
load_image( name );
function load_image( name )
[code]....
I've tried giving addEventListerner an anonymous function
View 3 Replies
View Related
Aug 14, 2011
How to take the numerical output from a function, and display it in an id—as in:
function Ran() {
var r = Math.random();
if (r < 0.5) return 0; else return 1;
// export 'return' to <span id="#myid">
[Code]....
View 4 Replies
View Related
Nov 3, 2010
I'm working on a project in which I parse the XML and I get the element names.
So far everything is ok.
Also, I would get a variable increment that I create in the function and I want to find out of it.
Unfortunately, I can not recover.
Here is an example of my script:
// start
// "i" is my increment variable
var i = 0;
$(this).find('foo').each(function(i){ // run correctly x time
i = i++;
[Code]....
How do I find my variable "i" to the output of my loop?
View 2 Replies
View Related
Feb 21, 2010
I am trying to taking this embedded script
Code:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var strDay;
if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) // Correction for 11th and 1st/21st/31st
strDay = "st ";
else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) // Correction for 12th and 2nd/22nd/32nd
strDay = "nd ";
else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3)) // Correction for 13th and 3rd/23rd/33rd
strDay = "rd ";
else
strDay = "th ";
document.write(dayName[now.getDay()] .....
// End -->
</script>
and turn it into a function called time.
XHTML Source
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "[URL]">
<html xmlns="[URL]" xml:lang="en">
<head>
<title>Test</title>
</head>
<body>
<strong><script type="text/javascript">time()</script></strong>
</body>
</html>
Javascript Source
Code:
function time() {
var strDay;
if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) // Correction for 11th and 1st/21st/31st
strDay = "st ";
else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) // Correction for 12th and 2nd/22nd/32nd
strDay = "nd "; .....
But when I do the out put returns nothing. Why this might be. I initially thought that I had the formattingsyntax wrong for the function it self but this doesn't seem to be. [URL]
View 7 Replies
View Related
Jan 20, 2009
I've got a glitch somewhere and it's not obvious to me. Maybe someone can spot it.My problem is that the functions seem to return values but don't display them like they should. I'm testing returned values with a function called sayvalue(item). But when I test "DelTimeCode" the function returns "[Object]". I don't understand. I get returned values from DelTime and DelTitle.My approach is to select a radio button option, return a delivery title and a delivery price from the appropriate functions then write the information. I think I'm close. Any suggestions or observations of an error in my code?I have the following VARIABLES and FUNCTIONS:
<head>
var AmtSV;
var DelTimeCode="";
[code]....
View 6 Replies
View Related
May 7, 2009
What's supposed to happen is when the program is run the user clicks on "Select your Numbers!" their then asked for 5 numbers which they input and then the numbers are checked by a function called �isAlreadySelected� for duplicates and if there is an alert is shown. When 5 numbers are entered correctly then they are shown by a window.alert.
Its done in to 2 functions
When I run the below code I'm prompted for the 5 numbers but it isn't checking for duplicates and my selection is undefined.
View 2 Replies
View Related
Mar 15, 2010
outputting the results from a javascript search function onto a new page. Right now I am using a javascript search script on 7 pages and it works but the results overwrite the current page that the search was initiated from. I would like it to open a new page and print out into a specific area. Im not really proficient in js, tho I know enough to get by. since ive been grinding my gears at work trying to get this to display right. I'll post the code tomorrow morning when I get to work so you can see the function.
View 2 Replies
View Related
Jul 26, 2011
I wrote a program which showing the difference of two auto generated values. its working perfectly but when i tried to set if() operator to make sound if the difference higher then 7 its not working.
I think something wrong in my code.
Orginal working code here...
But when i put if() operator under processdata() function the whole things hanged and no sound are palying.
I applied it like this way.
I dont know why its not working....i want to play and stop sound name sample.wav from my harddrive if difference range higher or lower than 7.....
View 1 Replies
View Related
Oct 21, 2011
So I'm trying to build a rostering system based on findmyshift.com - they have a free demo which I have used to get ideas and I really like the way they handle the editing of shifts - my problem is I can't figure out how to give a div focus as it were. If I could work out how to tell which div has been clicked, then get that div to listen for keypress events, I would be well on my way
View 2 Replies
View Related
Dec 9, 2004
it seems mozilla can't focus on div? is it possible at all to focus on a div in this browser,
View 4 Replies
View Related
Sep 19, 2011
I'm trying to make my timeclock for work, and the Date object in Javascript is giving me wrong values. I made sure that the time on my computer is the actual time, day and year, yet I either get dates that are 2 week in the future, or set in the year 2403. I have no idea what's going on, even if I just alert out a new Date() with no variables, I get the same result. If there is something that I'm not declaring or anything, I'd love to hear what it is.
View 2 Replies
View Related
Jul 12, 2010
I'm using the following code (simplified version) to call a Json file, parse it and on each iteration, create a div with an ID of "tab". I'm using this with jQuery UI .tab() to create a listing with entries which have three tabs. Anyhow, the principle seems to work except that when I examine what's happening behind the scenes using Firefox console, I see that each href in the html code produced is causing the Json function to re-fire using the href as it's url target.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
[Code].....
View 6 Replies
View Related
Oct 3, 2005
I'm mocking up an interface in javascript for an HCI assignment. I want
to be able to make the default onclick event for the buttons on my page
to display an alert since the buttons won't work yet. Is there an easy
way to do this? and it has to be as easy as giving each button their
own onclick attribute otherwise I'll just do that.
View 10 Replies
View Related
May 30, 2006
I have an intranet page which has an iframe which links to a number of
different possible .NET pages.
In one of the embedded .NET pages (and soon to be others) we want to be
able to capture keystrokes in order to link to other apps. we do this
by setting document.onkeydown to a function which handles the various
possibilities.
The problem I have is that when the intranet page loads with my .NET
page in its iframe, focus is not given to the .NET page, and so in
order for the page to capture keystrokes you have to click on the
contents of the iframe, which is both clunky and (it seems to me)
unnecessary.
How do I automatically give focus to the contents of the iframe when it
loads up? I've tried putting the following script at the bottom of the
intranet page itself, but this doesn't seem to work:
View 1 Replies
View Related
Feb 8, 2009
I need to get a table in javascript n i wrote this code:
But it is giving error that x is null.
View 7 Replies
View Related
Aug 1, 2006
I am using this code using AJAX. The probelm is no matter what choice is selected I always get the result grade=5.
<form>
<li><input type="radio" id="grade" name="grade" value="5" accesskey="5">Great</li>
<li><input type="radio" id="grade" name="grade" value="4" accesskey="4">Good</li>
<li><input type="radio" id="grade" name="grade" value="3" accesskey="3">OK</li>
<li><input type="radio" id="grade" name="grade" value="2" accesskey="2">Poor</li>
<li><input type="radio" id="grade" name="grade" value="1" accesskey="1">Oh, oh</li>
<li><input type="radio" id="grade" name="grade" value="0" accesskey="0">What is this?</li>
<li><input value="Study now"
type="button"
>
</li>
</form>
-------------------------------------
Now that a grade is entered it should be picked up by this text:
function createQueryString() {
var grade= document.getElementById("grade").value;
var queryString = "grade=" +grade;
return queryString;
}
-------------------------------------
function getNewTotals() {
var url = "getUpdatedSales.php";
url = url + "?dummy=" + new Date().getTime();
var queryString= createQueryString();
request.open("POST", url, true);
request.
request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
request.send(queryString);
}
-------------------------------------
Why do I always get a result of grade=5?
View 2 Replies
View Related
May 10, 2010
I have given a snippet of code where I am deleting rows which having index more than 11. Its working fine even it in IE(means at least giving result). But it giving error in error console of Mozilla & "Error on Page in IE".
<code>
if(single_record != ''){
var record_data = single_record.split("#*#");var no_of_rows1 = document.getElementById(table_id).rows.length;
var x = document.getElementById(table_id).insertRow(0);
x.style.backgroundColor = tr_Color;// TR bgcolor is set
var no_of_rows = document.getElementById(table_id).rows.length;// To find total no. of rows
var g0=x.insertCell(0); g0.align = "center";
var g1= x.insertCell(1);g1.align = "center";
var g2=x.insertCell(2);g2.align = "center";
var g3=x.insertCell(3);g3.align = "center";
g0.innerHTML = '<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color = "#000000" >'+record_data[0]+'</font>';
g1.innerHTML= '<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color = "#000000" >'+record_data[1]+'</font>';
g2.innerHTML= '<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color = "#000000" >'+record_data[2]+'</font>';
g3.innerHTML='<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color = "#000000" >'+record_data[3]+'</font>';
if(no_of_rows > 11){
for(var m = 10;m<no_of_rows;m++){
document.getElementById(table_id).deleteRow(m);// HERE MIGHT B THE ERROR
}}}
</code>
View 2 Replies
View Related
Aug 31, 2010
I'm new to jQuery/JavaScript and I wondering if this is because it can only see classes/id that are set on page load. I'm using the code below to give elements on my page individual id's.
$(".text").each(function(count){
var new_id = "txt_" + count;
$(this).attr("id", new_id);
});
But when I try and call this id later in the code, it doesn't work.
View 2 Replies
View Related
May 10, 2010
Firefox is throwing a DOM security error. I've used toDataURL() before, and it's never done this. I need to get this little app fixed, so that I can use it on my TabletPC for taking notes in class. The line of code that is throwing this error is:
var Note = document.getElementById("SketchPage").toDataURL();
Here's the full error from the Error Console:
Error: uncaught exception: [Exception... "Security error" code: "1000" nsresult: "0x805303e8 (NS_ERROR_DOM_SECURITY_ERR)" location: "file:///C:/SketchBook-Dev/SketchBook.js Line: 236"]
Here is the JS file:
var PenSize = "3";
var PenShape = "Circle";
var PenColor = "Black";
var LoadFile = "";
var UIstatus = "visible";
var CurrentNote = 0;
var BGcolor = "#C7C1A3";
var DataPath = "Data\";
var ImageExtension = ".img";
var FileList = [];
var SystemPath;
var UIstatus = "visible";
var Server = "localhost";
var NxtNote = new Image();
document.onkeyup = ToggleUI;
function Init() { .....
View 1 Replies
View Related
Oct 26, 2011
I have a search form all over my pages and I have a page for the results. What I wanted to do is when I clicked the button, I want message on the page where the results are. the message would would be "Results related for (text that inputted on the search form)" and I also wanted to put an image background for that.
<form action="http:pinoytopics.com/mark/gospel/test-2/" id="frm_search_form" method="get">
<input type="search" name="frm_search" id="frm_search">
<input type="submit"name="Submit"id="btnsubmit" value="Search">
</form>
View 1 Replies
View Related
Nov 9, 2010
I have been looking at this for ages, so apologies in advance if I have become so bleary eyed I can't see something simple.I use php to create buttons based on values pulled for a table. The problem I have is when you click on the first button the javascript function works great, when you click on the next button you get the same output even though it should be different results. I am working in ff and I can see on my firebug console that the javascript function is being called, but it is not passing the new value of the second or third button, it just keeps repassing the value of the first button. So not entirely sure where I am going wrong here.My page is:
<script type="text/javascript">
function loadXMLDoc2(File,ID,Msg){
if (window.XMLHttpRequest) {[code].....
And getShow.php produces a table with a list of product images, names and prices, based on theme.
View 2 Replies
View Related
Aug 11, 2010
i am getting problem in giving click event of input button ..my code is
for(var i=0;i<data.length;i++){
var acceptid="#Accept_"+data[i].cardid;
var divcard='<div id="" style="border-bottom:1px solid white;">'+data[i].user_from+'
[code]....
View 1 Replies
View Related
Apr 10, 2009
Is there a reason why this wouldn't work??
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>[code]....
Gives me the same null error, sometimes I get a "nav" is not defined, but again this is in both IE and FF.
View 2 Replies
View Related
Jul 23, 2005
Okay, how do I write a page with a form so that when I click Submit,
the following happens?
1. The data is submitted (of course)
2. The form is cleared (what I've tried results in the form being
cleared first, resulting in an empty submission), and
3. The cursor goes back to the start of the form, ready for more input
(kind of like how Google puts the cursor in the search box at the
start).
I can't seem to find the answer, and I've been looking on the net for a
few hours already.
View 2 Replies
View Related
Jun 19, 2009
Autocomplete not working in Firefox but works in IE 6. Getting an
"val is undefined error" in Firefox Error Console which points to the
parse() function in the autocomplete.js.
View 1 Replies
View Related