Using XML in wordpress
-
Hi.
I am using following code in my wordpress website,But I think its not getting executed as it nighter gives an error nor any result.I am try to get http header info of other websites.What i am doing wrong. Thanks for your help in advance.
xmlhttp.open(“HEAD”, “http://www.wordpress.com”,true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
alert(xmlhttp.getAllResponseHeaders())
}
}
xmlhttp.send(null)Shivam
The blog I need help with is: (visible only to logged in users)
-
First off, there is no WWW in any wordpress URL.
Secondly, we cannot use XHTML and we are limited on the HTML we can use.
-
Thanks for your reply…
I am using wordpress on one of the web hosts wiht my own url name does that makes any differance or is there any work around that i can use.
-
If you have external hosting, that matters. If you have hosting here and a custom domain, that does NOT matter.
If you have external hosting, you’re in the wrong forums and need to be at WordPress.ORG instead.
-
- The topic ‘Using XML in wordpress’ is closed to new replies.