Domanda

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.

È stato utile?

Soluzione

Without (), value is not a function.

Change

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

to

feed: document.getElementByID('feed').value,
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top