kaijim Posted September 28, 2005 Share Posted September 28, 2005 Before you ask a question in this forum, you should check out our XML Tutorial.For our XML Tutorial: W3Schools XML Tutorial 1 Link to comment Share on other sites More sharing options...
Html Posted October 8, 2007 Share Posted October 8, 2007 Perhaps they don't need to use it, considering they may have a certain standard...Or just haven't adapted yet to the standerd... Good question though. Link to comment Share on other sites More sharing options...
Hillel Posted September 23, 2009 Share Posted September 23, 2009 Hello.There is an error in "XML to HTML" chapter, its example is not valid for browser EI6 (I'm user EI6).Not valid code: ...else if (ActiveXObject("Microsoft.XMLDOM"))... Valid code: ...else if (window.ActiveXObject)... Thanks. Link to comment Share on other sites More sharing options...
Synook Posted September 23, 2009 Share Posted September 23, 2009 Why isn't the top snippet valid? Remember, window is the default namespace, and the top example checks for a certain ActiveX control, instead of just for the presence of ActiveX. Link to comment Share on other sites More sharing options...
Hillel Posted September 23, 2009 Share Posted September 23, 2009 (edited) Why isn't the top snippet valid? Remember, window is the default namespace, and the top example checks for a certain ActiveX control, instead of just for the presence of ActiveX.Hello, Synook.You are right, "window" not so is important.It is valid code too:...else if (ActiveXObject)... But this code not working: ...else if (ActiveXObject("Microsoft.XMLDOM"))... This fragment of a code (ActiveXObject("Microsoft.XMLDOM")) is completely not necessary, besides it still does problems, I user EI6 - I checked it.Thanks. Edited September 23, 2009 by Hillel Link to comment Share on other sites More sharing options...
Synook Posted September 23, 2009 Share Posted September 23, 2009 Hmm, you're right, it should be Microsoft.XMLHTTP. I suppose they forgot to update the reference.http://www.w3schools.com/XML/xml_http.asp 1 Link to comment Share on other sites More sharing options...
cowsdonthack Posted September 23, 2009 Share Posted September 23, 2009 (edited) Hmm, you're right, it should be Microsoft.XMLHTTP. I suppose they forgot to update the reference.http://www.w3schools.com/XML/xml_http.asp Yeah, I actually realized this two days ago because I'm working on an XML form that must be compatible with IE6Does anyone know how to make this work? I tried both examples with no luck, and I don't know how to implement Microsoft.XMLHTTP Edited September 23, 2009 by cowsdonthack Link to comment Share on other sites More sharing options...
brucemand Posted July 25, 2011 Share Posted July 25, 2011 Yeah, I actually realized this two days ago because I'm working on an XML form that must be compatible with IE6Does anyone know how to make this work? I tried both examples with no luck, and I don't know how to implement Microsoft.XMLHTTPnobody seems to have resolved this thread, so i thought i'd try to 'bump' it in a manner of sorts.if you're in a localhost environment, then the way to make it work is to not use IE6 !! http://w3schools.invisionzone.com/index.ph...st&p=214004 Link to comment Share on other sites More sharing options...
kannaiah.chinni Posted March 20, 2012 Share Posted March 20, 2012 Hello xlink is not working.it needs any special settings in browsers. i was checked with mozilla 10 and chromium 11 and opera browsers and i have one more questions does any one know like html (http://www.w3schools.com/index.php#xml) it will move to that div or paragraph with id="xml" the same is there any posibility in xml files. Link to comment Share on other sites More sharing options...
Uday kumar Posted May 24, 2014 Share Posted May 24, 2014 Your XML Tutorial is very hard!Make it user friendly,rather than using complex words. Link to comment Share on other sites More sharing options...
Szabolcs Licsko Posted October 15, 2020 Share Posted October 15, 2020 (edited) XML Sitemaps have replaced the older method of "submitting to search engines" by filling out a form on the search engine's submission page. Now web developers submit a Sitemap directly, or wait for search engines to find it. Regularly submitting an updated sitemap when new pages are published may allow search engines to find and index those pages more quickly than it would by finding the pages on its own Edited October 15, 2020 by Szabolcs Licsko Link to comment Share on other sites More sharing options...
Gayan Posted March 15, 2021 Share Posted March 15, 2021 Small omission at https://www.w3schools.com/xml/xml_tree.asp page. Please insert the closing tag </bookstore> at the end of the document as in XML, it is illegal to omit the closing tag. All elements must have a closing tag; like this. The next line ends the bookstore root element: </bookstore> You can assume, from this example, that the XML document contains information about books in a bookstore. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now