|
help with some code(xml)
|
View this Thread in Original format
| King_Mack |
just outta curiousity, what am I doing wrong here?
var blah;
var myDoc = new ActiveXObject('Microsoft.XMLDOM');
myDoc.async = "false";
if (myDoc.load('entries.xml'))
{blah = "it works! it works!"; }
else
{ blah = "it doesn't work"; }
thanks in advance |
|
|
| meneedit |
| you shouldn't have thanked them in advance |
|
|
| Orbax |
Get a life you code-monkey
Your welcome :D |
|
|
| King_Mack |
| quote: | Originally posted by Orbax
Get a life you code-monkey
Your welcome :D |
DIE!! :whip:
hehe
im trying to help this chick with her homework :disbelief |
|
|
| kewlness |
| how large is her pen0r? |
|
|
| Orbax |
| bahhaha I love the CORe |
|
|
| fmanolo |
| you forgot end if :toothless |
|
|
| DJAntSmith |
| You probably missed a full stop somewhere... :toothless |
|
|
| Thunder5 |
What has this to do with xml (yes I notice that you're trying to parse an XML document).
What kind of error messages does the compiler/intepreter give you.. Those usually are very helpful when trying to figure out whats wrong.. :) |
|
|
| UglyDave |
although i dont know the first thing about xml.. i'm gonna have a guess and say:
= "false"
shoule be:
= false
no harm in tryin it! |
|
|
| tranceaholic |
| i also dont no jack about xml but ill try.. i think it is because u cant use the assigned simple to a string co u cant say x = " hi" but u can say x=2 so u can say x=hi but hi has to have a type am i making any sense |
|
|
|
|