To assign flashvars value from input value

105 Views Asked by At

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.

1

There are 1 best solutions below

2
xdazz On BEST ANSWER

Without (), value is not a function.

Change

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

to

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