Emailing Result From Quiz ?
Oct 3, 2010
I wrote quiz using HTML and JavaScrip. Score is accumulated in a variable called myScore. Now I want to email the result of myScore to an email address. How do I go about doing this? I don't want to use the mailto: command since that require that user actually press the send command to send the email. I want this done automatically after user finishes the quiz.
View 4 Replies
ADVERTISEMENT
Nov 2, 2006
I have a js script which takes a number from the input box of an html form, stores it as a variable, compares it to a given set of numbers and then confirms that it is agrees or not as the case may be. So far so good & this works OK I now want to be able to send that inputted number as an email without the visitor being aware of it. Is there a a way of doing this in Javascript?
View 3 Replies
View Related
Mar 14, 2006
Not sure whether this is possible but what i want is to add an "Send To
A Friend" button, but i want the button to send an email to an address
(Specified by user) from my personal Hotmail or Yahoo account instead
of starting the users default email client.
View 3 Replies
View Related
Mar 19, 2010
I have a website [url] that I'm working on. The website has some javascript usage and some jquery (via a shadowbox mod). If you select the form - Free Quote or Schedule Service - the form pops up and you can fill out the information. You get the quote and then you can choose to schedule service by selecting that button.
For some reason the value that is in the drop down doesn't get emailed and I have no idea why. Let me know if I did a crap job of explaining or if some code needs to be posted. I figured one could just access the source of the website and tell but I dunno.
If you need to go directly to the form code you can use the url: [url]
View 3 Replies
View Related
Jul 7, 2010
Ive made the quiz works fine but instead of a box which displays the percentage I would like to have a pop up box when they click the submit button, also inside the pop up box it displays i.e. you got 4 out of 10 for example.
<HEAD>
<script language="JavaScript">
var numQues = 10;
[code].....
View 1 Replies
View Related
Aug 6, 2009
I was tasked with creating a JavaScript quiz...I succeeded in doing so but part of the requirement was to use hidden fields for the answers.
Would this be possible using the code I currently have:
View 8 Replies
View Related
Sep 6, 2011
I am making a simple multiple choice quiz and if user gets all correct i need it to automatically go to a new page rather than having a manual button for that so they cant move on until all questons are answered correctly.
View 13 Replies
View Related
Sep 9, 2011
The page will display brief instructions followed by a table containing the quiz.The first is with the Score() function which reads as follows:
function Score(){
for(i=1;i<=10;i++)
if(ans[i]== yourAns[i])
[code]....
Now unless I'm mistaken (which I am since the score isn't being tabulated correctly) this function essentially uses a for to cycle through both arrays, comparing the user's input against the array containing the right answers. If the contents within index i are the same on both arrays the score increases by one point. Once it cycles through the arrays, it passes score over to prequiz.score.value which will later pass this number to the text box that will display the grade to the user.
Thinking it was the setAnsArray(question, answer) function I added a document.writeline to it. However it showed that the values were being passed correctly to the answer array. Added a document.writeline to the Score() function. Unlike the point above, score always displays as 00000 regardless of how many right answers I provide.
The second issue I'm having is that the reset button is not working correctly. If I hit reset and answer the first question, the score will come back as double the score displayed before.
<?xml version="1.0" encoding= "utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
[code]....
View 10 Replies
View Related
Mar 22, 2009
I'm trying to make a Quiz that generates random pictures each time the page is launched , with multiple options for the user to choose the right answer satsifying the picture and its meaning .
I've made the pseducode and i understand the algorithm ..but i don't know how to write the statements .
My algorithm is :
1-Random picture is shown each time the page is launched.
2- 6 Buttons are placed .
3-user choses the right matching answer.
4- window is popped up saying "correct"when its correct if not , an alert saying ;'Your answer is incorrect. Please try again"
So this is the code i've made , i know there's errors but just to show the Idea.
View 4 Replies
View Related
Nov 8, 2010
I am trying to add a dropdown list with the point values 1, 2, 3 ,4.If I use the number 1 from the dropdown for the first question, I need it to not allow the user to use that value again for questions 2, 3, and 4.
View 1 Replies
View Related
Jul 6, 2011
//I can't figure out how to highlight the correct answer, I wrote a highlight function but it doesn't seem to work.
var useranswers = new Array();
var answered = 0;
function renderQuiz() {
[code]....
View 1 Replies
View Related
Nov 4, 2010
I want to make a simple quiz in HTML using JavaScript. I have made a web page called scoreboard which contains two tables. I have attached the screen shot of how the web page looks as well as the coding here with this msg. below is the description of my web page. If you find it lengthy or not understandable, pls refer my attached image of the web page.
Description: one table contains two rows - one for direct answers and another for answers which are given during their pass chance in the quiz. There are four buttons - Team A, Team B, Team C and Team D for both the direct and pass. And the second table contains four text boxes which which displays the score for each Team.
Now, in my web page i have typed the required coding so that when in click the TeamA, TeamB,...buttons in the direct row, the score board for Team A adds up 10 points.
Now i want to add 5 points for the respective teams when i click their team button in the pass row. I am not able to code that. the code goes below.
<html>
View 6 Replies
View Related
Nov 13, 2009
My assignment is to create an online quiz with a random image generator. I have created my online quiz using 5 linking files and everything works great. My only problem is getting the images to show up on my quiz. All I get is the filename with a red X. Which the files do show up at random when I refresh, so I know that part is working. I just don't know what I am missing to get the actual picture to show up. Please keep in mind this isn't the whole code as I have different linking files for this assignment.
<?xml version = "1.0" encoding = "utf-8"?>
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 StrictEN" "[URL]">
<!-- Assignment CH10 Solution -->
<html xmlns = "[URL]">
<head>
<title>Online Quiz</title>
<script type = "text/Javascript">
<!--
var rimg = 0;
var pictures = [ "logo", "logo2", "logo3", "logo1", "cover" ];
function randpics(){
var myQuiz = document.getElementById( "myQuiz" );
rimg = Math.floor( Math.random() * 5 );
myQuiz.logo.src = pictures[rimg]+'.gif';
myQuiz.logo.alt = rimg + ' : ' +pictures[rimg];
} function checkAnswers() {
var myQuiz = document.getElementById( "myQuiz" );
if ( myQuiz.elements [ 0 ].checked )
alert ( "Congratulations, your answer is correct" );
else if the answer is incorrect
alert ( "Your answer is incorrect. Please try again" );
} end function checkAnswers
-->
View 6 Replies
View Related
Jun 17, 2008
I want to run a quiz competion on my website in which after logging any user play that quiz, like I will give 50 question to solve in just 3 min time, all will be objective question, now after that 3 min, quiz will automatically end and all users marked answer entered to the database, means he has not press any submit button, but after specific time all answer automatically enter in the database, and he come out from it..
Now I am using this timer:
<!DOCTYPE HTML PUBLIC "-W3CDTD HTML 4.01 TransitionalEN" "[URL]">
<html><head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head><body>
<?php
$dateFormat = "d F Y -- g:i a";
$targetDate = time() + (1*60);Change the 25 to however many minutes you want to countdown
$actualDate = time(); .....
Where to bring changes or which new thing is to be added.
View 7 Replies
View Related
Sep 14, 2011
It's a simple quiz with one multiple choice question and one fill in the blank.
When the user clicks on 'submit' I tried to show some kind of response with correct/incorrect images next to the question. It works with the multiple choice question, but not with the fill in the blank. How can I get the fill in the blank question to work.
Code:
answer_list = [
['False'],
['body','hips','knees']
[Code].....
View 2 Replies
View Related
May 12, 2011
I am looking for a javascript quiz script that will allow me to grade individual sections of a quiz rather than grading the quiz as a whole.
I am looking to setup an online test consisting of a number of sections but the output must grade each section individually.
View 3 Replies
View Related
May 13, 2009
I have a multiple choice quiz in HTML. My requirement for scoring this quiz seems to be different from every other quiz I have seen on the net.
This is due mainly, I believe, to the fact that the number of questions involved in this quiz can be from 1 to infinite as the user action brings up the next question from external JS Q&A files.
In addition I want the user to see their score amended each time they answer a question, not at the end of the quiz (which theoretically may never happen).
In the existing code I already determine and provide "Correct" and "Incorrect" messages immediately following the selection of any of the four 'answer' radio buttons.
What I need to do now is to find out how I can arrange to:
1 count all the Correct answers - when they occur and add to a 'running' total (RT1)
2 count all the Incorrect answers - when they occur and add to a 'running' total (RT2)
3 calculate:- (RT1/(RT1 + RT2)) x (100/1) = percentage success rate so far.
The percentage success rate so far� is to be shown in a text field for the user to see.
View 7 Replies
View Related
Apr 18, 2011
My client wants a simple quiz with the correct answers displayed if they get them wrong. I used code from somewhere on this site, but this is the first time I have ever wrote javascript. My problem is: When the scored answers are displayed in the new window, there are no spaces. How do I format the script to display text with breaks between each answer?
[Code]...
View 13 Replies
View Related
Apr 1, 2010
I'm working on a simple website in which I'm required to use two types of forms input on a webpage. I have decided to make a simple quiz which will be designed.Is this possible in a simple way? Sounds quite straight-forward.Is it possible to design a radio button which, depending on the choice, the related-text will appear underneath on the same page? So if they select 'A' then paragraph 'A' will show, if they select 'C' then paragraph 'C' will appear (with the rest hiding)..
View 6 Replies
View Related
Sep 7, 2010
How can I get the result for the following SQL statement using JavaScript?
SELECT branch, region, referral, COUNT(DISTINCT LPS) FROM table GROUP BY branch, region, referral
Data:
BranchClientReferral TypeLPS #
402036402430Psychological File Review30
402036402430Psychological File Review50
[code]...
View 4 Replies
View Related
Jul 20, 2005
I have this function that checks formfields with an onChange. But it seems
to get my comparisons wrong. I've listed the function below, and give some
sample values here, the committed value is changed from 1000 to 1500 and
then gets a popup that it is greater than the Budget? Code:
View 1 Replies
View Related
May 26, 2011
as you know when calling .submit() on a form the result object is a jQuery object.
in many situations i need to find out if the called .submit() really submitted the form or canceled by a submit event handler.
for example suppose we had a form named "myform"and a submit event handler (could be registered by a third party component or something) as below :
$("#myform").submit(function()
{
if (x==y)
return false;
[Code]....
View 3 Replies
View Related
Sep 12, 2011
I have this code to get results based in search query.
<script type="text/javascript">
$(document).ready(function(){
$('#envio').click(function(){
var iURL = "http://ajax.googleapis.com/ajax/services/search/images";
[Code]....
This return a Object as you can see in images exposed at this URL: [URL]. My question is how I can get unescapedUrl value for each result? The $.each in the code before doesn't work as you can see in images too.
View 3 Replies
View Related
May 6, 2010
After doing a url get with,
var url = new URL();
url.fetch('remoteUrl');
How do I do a $.(#high_price) on the resulting url.response string?
View 2 Replies
View Related
Jun 11, 2009
I have a multi-page order form for my website. My form is using a javascript that will calculate the total price for my products. The customer has the option to add on additional products during this process. The problem that I am having is that I am unable to carry over the sum once the customer clicks the next button. Does anyone have a solution?
[Code]...
View 1 Replies
View Related
Dec 15, 2009
I'm working on a form which would display the result in the same div that the form is.
Here is my code so far:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<textarea name="html">
View 11 Replies
View Related