Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: melstef
  • Order by date
  1. melstef

    I NEED HELP.....

    it doesn't work because it is a quiz and when they click, they have a popup saying that the answer is correct or not. so with the iframe, I cannot have popup thanks
  2. melstef

    I NEED HELP.....

    hello, yes it helped me understand more of javascript. My problem is still there. I want only one quiz_basic.htm for all 50 sites, that would be at hazardhouse.com/quiz_basic.htm. The questions will change and I do not want to change every quiz one by one because they are the same. The...
  3. melstef

    I NEED HELP.....

    this is what I need to do: www.hazardhouse.com/test www.hazardhouse.com/test/quizintro.htm www.hazardhouse.com/quiz/quiz_basic.htm www.hazardhouse.com/test/quizinfo.htm www.hazardhouse.com/test2 www.hazardhouse.com/test2/quizintro.htm www.hazardhosue.com/quiz/quiz_basic.htm...
  4. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    Could someone help me please, the switch loc doesn't work, what should I do now???
  5. melstef

    QUIZ WITH 2 OR MORE POSSIBLE ANSWERS !

    thanks a lot
  6. melstef

    QUIZ WITH 2 OR MORE POSSIBLE ANSWERS !

    I'm sorry, I'm not used to the javascript.. Where should I put the string in my code: if (ans[question].indexOf(answer) == -1){ // incorrect answer } Thanks
  7. melstef

    QUIZ WITH 2 OR MORE POSSIBLE ANSWERS !

    here is my script, how can I write the script to have more than one possible answers?: <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin var ans = new Array; var done = new Array; done[1] = false; done[1] = false; done[3] = false; done[4] = false; done[5] = false; done[6] = false; done[7] =...
  8. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    the switch code doesn't work!!! I probably didn't inserted correctly.. could you help me please... look at the code posted on nov 22 in this thread.. thanks
  9. melstef

    [b]SWITCH LOCATION[/b]

    Someone told me to do a switch location but I'm not sure if my code is correct. I am at this address www.hazardhouse.com/test when I click on quiz it goes here www.hazardhouse.com/quiz/quiz_basic.htm Here is my problem: After clicking on get certificate, I need to go back to the root ...
  10. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    ok now I found the problem for my quiz. It does work now. the problem is when I click on the button to get the certificate, I have an error page. When I click the certificate button, it goes here: www.hazardhouse.com/quiz/quizinfo.htm Why does it says in the same folder??
  11. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    Hello, I'm not very familiar with javascript, usually I take a code and insert it into my .htm file. Usually I understand what it says and does and I can change a few string of the code. You will see above what I did. I'm must be missing something or did not put the code in the right place...
  12. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    Thanks, I will give you feedback on monday for the code. have a nice weekend
  13. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    the problem is that I can't write: self.location="/test/quizinfo.htm" because the folder name test changes depending on who is going on the site. I would need to put something here: self.location="/???/quizinfo.htm" to go back to the folder the person was into before going to the quiz... I'm...
  14. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    abfco -quizintro.htm *this is where we choose to go to the quiz -quizinfo.htm *this is where the person enters their information to go to the certificate certificates -abfco -juniorcertificate.gif -mailsubject.txt -juniorcounter.txt quiz...
  15. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    thanks, but I tried all this before and it's still not working. On the server I have different folders web1 web2 web3 web4 web5 In each of those folders I have a page called quizintro.htm and when on click on this it goes to quiz/quiz_basic.htm This is fine up to here... Then when I click on...
  16. melstef

    MAKE A LINK IN DIFFERENT FOLDERS AND RETURN TO THE ROOT?

    Hello, I have the same quiz under different folders on the server. I would like to put the quiz only in one folder(name=quiz) so this would be easier for updates. it goes something like this: 1 - www.mysite.com/web (I click on the quiz page and it goes to #2) 2 -...
  17. melstef

    LINKS BETWEEN DIFFERENT FOLDER AND SUBFOLDERS???

    I cannot use ../web/quizinfo.htm because I want the quiz to be in one folder for each site so the name "web" changes all the time??? I could have www.mysite.com/web www.mysite.com/web2 and so on... Is there a solution?
  18. melstef

    LINKS BETWEEN DIFFERENT FOLDER AND SUBFOLDERS???

    this is my button: <input type=button onClick="NextLevel()" value="Receive Your Certificate">
  19. melstef

    LINKS BETWEEN DIFFERENT FOLDER AND SUBFOLDERS???

    this is my code and it doesn't work: function NextLevel () { if (score > 10) { alert("You cheated."); } if (score >= 10 && score <= 10) { self.location="../quizinfo.htm" }
  20. melstef

    LINKS BETWEEN DIFFERENT FOLDER AND SUBFOLDERS???

    Hello, I have the same quiz under different folders. I would like to put the quiz only in one folder so this would be easier for updates. it goes something like this: 1 - www.mysite.com/web (I click on the quiz page and it goes here) 2 - www.mysite.com/web/quizintro.htm (then I...

Part and Inventory Search

Back
Top