Pergunta

I am trying to assign the URL from a input value that's parsed by PHP to FlashVars using javascript

<input id="feed" type="hidden" value="http://localhost/photo/" />

... other HTML code goes here ...

var flashvars = {
   feed: document.getElementById('feed').value(),

   ... other flashvars code goes here ...

}

But this doesn't seem to work, is there anyway to pull this off? Thank you.

Foi útil?

Solução

Without (), value is not a function.

Change

feed: document.getElementByID('feed').value(),

to

feed: document.getElementByID('feed').value,
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top