Dear all, I want to make online test, so every exam has a time duration. How to check the time and show that to the student every second. Please assist me......
Do you want to just show the user the current time? If so, all they have to do is look on their desktop. But, I don't think this is the case, so: 1) Define a...
There's one more thing. Make sure that the variable that you have that defines the timeout value for the page is defined *outside* of the function. --Tim Sabin...
Hi, I have a onblur handler in a input text. This handler check if the entry is valid, and, if it is not, focus on the text field again. This works fine,...
Hi group, I want link that illustrate me the concept of creating simple upper menu. I need the concept, how does really the menu works ? does it depend on the...
To get the current time: var current_time = new Date(); To get the correspondent string: current_time.toString(); To get a time in the future (maybe the final...
AFAIK you can't get your onBlur handler to stop submission. You'll need to grab the onSubmit event and return false from that. E.g. onSubmit='return validate...
If I'm understanding you correctly, you are asking about menus generated on a page? If so, then there is no "concept". There are as many ways of doing it as ...
Thanks for the answer. That's I want. But I am a beginner in javascript. Could you give me the javascript code for eachsec function ? Please assist me. Thx. ...
The code truly depends on what you want to do. Read up on JavaScript at http://www.devguru.com/javascript, and HTML at w3schools.com. Pay special attention to...
Instead of making your button of type="submit", make it type="button". Then on your validation, programmatically submit() the form only if the form is valid;...
i'm using microsoft front page to create a website...in that website i created a pop-up menu....once i click the option in the pop-up menu, i want it to...
I need some help. I am new to javascript. I want to have a dropdown list with some options. When an option is chosen, then some checkboxes show up for the user...
Mike, First you need to key on when a new option is chosen: (in the select tag) onChange="chgCkboxes ();" Put together a <div id="ckboxDiv"> to hold your...
What is the code supposed to do? What is it actually doing? Please provide detailed information. I do note that your test for July has "3" instead of "6". ...
Is there a way to make an iframe that is size (height, width) adjustable by the user. The user should be able to click and drag to a new desired size. I know...
Hi, I'm a bit stumped with this, I'm trying to get the innerHTML on a page within an iframe on the same domain, and the process works fine for the regular...
Dear all, How to add text field by javascript ? I want to enter some data, and for first time, only there is one text field, when I enter the first text field,...
thanks for the code.... Do u know, wht is meant by Javascript functions and looping? can please explain to me regards, farhana ... From: dhaval vekariya...
Wow, you did say you're a beginner... What appears to be a good JavaScript tutorial is at http://www.echoecho.com/javascript.htm This will answer your...
1) Insert a span into your HTML so you can set the contents: <input type="text" ...> <span id="anotherTextBox"> </span> 2) Set the contents of the <span> with...