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?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
Thank you. That is helpful. If you know about blogger language book or syntax language (b:if ...), tell me please – ebattulga Oct 13 '09 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 L. Oct 13 '09 at 17:41
Very thanks for you – ebattulga Oct 13 '09 at 18:05
feedback

Your Answer

 
or
required, but never shown

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