... to each ... date? (I.e. ... (But then ... to 7, or ... picture ... use the ... the ones ... that ... posting a ... simply ... which ... Thank you very...
Correction: The idea seems ok, but if think the method is getDay(), not getDate(). ... -- ========= Rafael C.P. ========= [Non-text portions of this message...
No, it is not possible to run this batch file on the server from JavaScript. If you own the server, it would be possible to run the batch file on it in the...
getDay returns the day of the week - 0 to 6 - 0 being Sunday. getDate returns the day of the month - 1 to 31. I think the requirement is for day of the month,...
hello everyone: I tried to use a counter to count how many elements on the form passed validation test. (if all the elements passed validation test, then...
There is a logical error here: if (!validatedOK) { return false; } //increment the counter, when all the elements on the form //has passed validation test,...
I need the code for the lucky number... logic.. The number should be inputted and that should be added itself like as follows... step1:- input number may be :...
Dave. I wholeheartedly agree. (Not a personal flame, but a comment in general). How can people expect to write elegant code that works 100% when they can't pay...
Make the attempt to write it, and then make the attempt to write again. And etc, etc. Your not going to learn anything by us doing it for you. "sri.vikram"...
... Why don't you try to start something and then talk about your problems, instead of requiring people to do your whole homework. Your task is quite easy,...
Thank you for your motivating me. But Last time when I post my code in the "Reduce the code please " Message, some honorable group members objected me to do...
Some pseudocode: 1. Make a function to handle all alphabetic characters. 1a. Declare an array and store a character in each position. 1b. Use the index of each...
You will find that what I said was: "In future, please do not post code for analysis without also posting a description of what it is actually supposed to do....
'Fraid I must leave this as a point of philosophical disagreement, Jon. I absolutely hate bottom posting. The only time I consider it OK is if the whole...
Hello everyone: I am using a javascript to validate elements on a form. In javascript, I used getElementById to get reference to a particular element on the...
hello everyone: I reexamed my code and found out that cause of my issue is due to the code below. My intent is to validate all the elements on the form first,...
The following code is called onsubmit of a form in my page. The entire fucntions works well except the error handling portion. I iterate through all form...
Your problem is with syntax, not logic. The syntax of an if statement is: if (test) statement; or if (test) {block-of-statements} What your code says is: if...
I think pgForm.fieldName.style.background will be looking for a field of name "fieldName", not forming a name from the contents of fieldName. It's a while...
Hello Everyone, I want to write a javascript which will force every link on the page to be opened in a new window. As some links are cuming from google's ...