Click here to Skip to main content
15,881,938 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: Change Image Background Using Javascript Pin
Kornfeld Eliyahu Peter25-Oct-16 4:02
professionalKornfeld Eliyahu Peter25-Oct-16 4:02 
GeneralRe: Change Image Background Using Javascript Pin
MadDashCoder30-Oct-16 7:27
MadDashCoder30-Oct-16 7:27 
QuestionConvert a number or numbers into spoken words using JavaScript? Pin
samflex24-Oct-16 9:31
samflex24-Oct-16 9:31 
AnswerRe: Convert a number or numbers into spoken words using JavaScript? Pin
ZurdoDev24-Oct-16 10:21
professionalZurdoDev24-Oct-16 10:21 
AnswerRe: Convert a number or numbers into spoken words using JavaScript? Pin
Nathan Minier25-Oct-16 1:50
professionalNathan Minier25-Oct-16 1:50 
AnswerRe: Convert a number or numbers into spoken words using JavaScript? Pin
F-ES Sitecore26-Oct-16 4:18
professionalF-ES Sitecore26-Oct-16 4:18 
GeneralRe: Convert a number or numbers into spoken words using JavaScript? Pin
samflex26-Oct-16 9:38
samflex26-Oct-16 9:38 
Questionvariable undefined Pin
wfzen21-Oct-16 8:08
wfzen21-Oct-16 8:08 
I want to extract a video name from XML and put it in the URL parameter. I copied the XML reading code from w3school. See below:
JavaScript
//var videoName; the name of the video
var tPath = ... the URL to the XML
var var2 = ... the filename of an XML
  var xmlhttp = new XMLHttpRequest();
  xmlhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      myFunction(this);
    }
  };
  xmlhttp.open("GET", tPath, true);
  xmlhttp.send();
function myFunction(xml) {
  var x, xmlDoc, videoName;
  xmlDoc = xml.responseXML;
  x = xmlDoc.getElementsByTagName("videoName")[0];
  videoName = (x.textContent);
  alert (videoName);
}
var playerURL = "http://" + getCookie("MediaServerGeneral") + "/IVP/demo.htm?XMLName=" + var2 + "&MediaFileName=" + videoName;


I see the name of the video in alert. but the playerURL has videoName shown as undefined.

my XML is like this, and I'm trying to pick up "videoName.mp4":
<?xml version="1.0" encoding="utf-8" ?>
<video>
	<videoName>videoName.mp4</videoName>
	<setting>
		<videoSize w="896" h="504"></videoSize>
	</setting>
</video>


What is wrong with the script?

Thanks,

modified 25-Oct-16 18:02pm.

AnswerRe: variable undefined Pin
Richard MacCutchan21-Oct-16 22:11
mveRichard MacCutchan21-Oct-16 22:11 
AnswerRe: variable undefined Pin
Rahul VB22-Oct-16 8:28
professionalRahul VB22-Oct-16 8:28 
GeneralRe: variable undefined Pin
wfzen25-Oct-16 12:20
wfzen25-Oct-16 12:20 
Questiongenerate html on separate page Pin
dcof17-Oct-16 10:22
dcof17-Oct-16 10:22 
Rant[REPOST] generate html on separate page Pin
Richard Deeming18-Oct-16 2:00
mveRichard Deeming18-Oct-16 2:00 
QuestionSave form data without using Php Pin
LincolnMugasho16-Oct-16 6:21
professionalLincolnMugasho16-Oct-16 6:21 
AnswerRe: Save form data without using Php Pin
F-ES Sitecore16-Oct-16 23:21
professionalF-ES Sitecore16-Oct-16 23:21 
AnswerRe: Save form data without using Php Pin
Nathan Minier17-Oct-16 1:09
professionalNathan Minier17-Oct-16 1:09 
Questioncosmetic fix, get the spinner to show for a second Pin
jkirkerx14-Oct-16 9:43
professionaljkirkerx14-Oct-16 9:43 
AnswerRe: cosmetic fix, get the spinner to show for a second Pin
Richard Deeming17-Oct-16 2:00
mveRichard Deeming17-Oct-16 2:00 
GeneralRe: cosmetic fix, get the spinner to show for a second Pin
jkirkerx17-Oct-16 6:29
professionaljkirkerx17-Oct-16 6:29 
GeneralRe: cosmetic fix, get the spinner to show for a second Pin
jkirkerx17-Oct-16 6:53
professionaljkirkerx17-Oct-16 6:53 
GeneralRe: cosmetic fix, get the spinner to show for a second Pin
Richard Deeming17-Oct-16 7:38
mveRichard Deeming17-Oct-16 7:38 
GeneralRe: cosmetic fix, get the spinner to show for a second Pin
jkirkerx17-Oct-16 10:15
professionaljkirkerx17-Oct-16 10:15 
QuestionBig Data beginner, where do I start? Pin
roraaa_9-Oct-16 16:58
roraaa_9-Oct-16 16:58 
AnswerRe: Big Data beginner, where do I start? Pin
Richard MacCutchan9-Oct-16 21:52
mveRichard MacCutchan9-Oct-16 21:52 
GeneralRe: Big Data beginner, where do I start? Pin
Mycroft Holmes9-Oct-16 22:33
professionalMycroft Holmes9-Oct-16 22:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.