vote up 0 vote down star

I'm using blogger.com. I need to use data:blog.url variable on the javascript. But i don't know how to assign to any javascript variable.

How to get blogspot variables on the javascript?

flag

72% accept rate

1 Answer

vote up 1 vote down check

if this doesn't works:

<script>
  var blogURL = '<data:blog.url/>';
</script>

then try this:

<div id="blogurl" style="display:none;"><data:blog.url/></div>
<script>
  var blogURL = document.getElementById('blogurl').innerHTML;
</script>

But if you want to get the page URL in javascript you can use window.location

disclaimer: i've never used blogger

link|flag
Thank you. That is helpful. If you know about blogger language book or syntax language (b:if ...), tell me please – ebattulga Oct 13 at 17:31
Well, what i've done is just download a template and look into the xml file. for books: amazon.com/s/… and also: bloggerfordummies.blogspot.com/2006/04/… – Pedro Ladaria Oct 13 at 17:41
Very thanks for you – ebattulga Oct 13 at 18:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.