Jump to content

igor.learner

Members
  • Posts

    2
  • Joined

  • Last visited

igor.learner's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Deirdre's Dad thanks !I was literally looking at my code about 5 times and comparing it to the code on the video, but somehow I did not see the mistake you wrote about. It works now. In programming you need such a punctuality and, how is it in english, "proof reading", everything can just not work if you do not put one word in Foxy ModIt is something new for me, it works as well. I will try to remember that.
  2. Hello. I am doing a tutorial on youtube, and a guy (teacher, i am not sure if I can advertise him here) is showing a lesson - "Calling function from another function" on a video, he is writing and generating the code to the web page, but I write the same code - nothing happens. My code is: <html><head><title>Tutorial</title><script type="text/javascript">function doFirst() { document.write("one two three"); }function doSecond() { document.write("My name is Juris"); }function start() { function doFirst(); function doSecond(); } start();</script></head><body></body></html> - it is very basic, but it is not popping on my screen. I do not understand why? I have checked everything for mistakes. Does somebody know the answer?
×
×
  • Create New...